summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/hidapi/default.nix
blob: 206ecaa86239e3f44a6655504ab1539a7f4f1d49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  pkgs,
  lib,
  fetchFromGitHub,
  buildDunePackage,
  pkg-config,
  dune-configurator,
  bigstring,
}:

buildDunePackage (finalAttrs: {
  pname = "hidapi";
  version = "1.2.1";

  duneVersion = "3";

  src = fetchFromGitHub {
    owner = "vbmithr";
    repo = "ocaml-hidapi";
    rev = finalAttrs.version;
    hash = "sha256-upygm5G46C65lxaiI6kBOzLrWxzW9qWb6efN/t58SRg=";
  };

  minimalOCamlVersion = "4.03";

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    pkgs.hidapi
    dune-configurator
  ];
  propagatedBuildInputs = [ bigstring ];

  doCheck = true;

  meta = {
    description = "Bindings to Signal11's hidapi library";
    homepage = "https://github.com/vbmithr/ocaml-hidapi";
    license = lib.licenses.isc;
    maintainers = [ ];
    mainProgram = "ocaml-hid-enumerate";
  };
})