blob: d3d666ef081af84d159e817086e63b4cfd6aee7f (
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 rec {
pname = "hidapi";
version = "1.2.1";
duneVersion = "3";
src = fetchFromGitHub {
owner = "vbmithr";
repo = "ocaml-hidapi";
rev = 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 = [ lib.maintainers.alexfmpe ];
mainProgram = "ocaml-hid-enumerate";
};
}
|