tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.iomux: init at 0.3
toastal
2 years ago
bf7e9519
8201afb7
+36
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
iomux
default.nix
top-level
ocaml-packages.nix
+34
pkgs/development/ocaml-modules/iomux/default.nix
···
1
1
+
{ lib
2
2
+
, fetchurl
3
3
+
, buildDunePackage
4
4
+
, dune-configurator
5
5
+
, alcotest
6
6
+
}:
7
7
+
8
8
+
buildDunePackage rec {
9
9
+
pname = "iomux";
10
10
+
version = "0.3";
11
11
+
12
12
+
minimalOCamlVersion = "4.08";
13
13
+
duneVersion = "3";
14
14
+
15
15
+
src = fetchurl {
16
16
+
url = "https://github.com/haesbaert/ocaml-${pname}/releases/download/v${version}/${pname}-${version}.tbz";
17
17
+
sha256 = "zNJ3vVOv0BEpHLiC8Y610F87uiMlfYNo28ej0H+EU+c=";
18
18
+
};
19
19
+
20
20
+
buildInputs = [
21
21
+
dune-configurator
22
22
+
];
23
23
+
24
24
+
checkInputs = [
25
25
+
alcotest
26
26
+
];
27
27
+
28
28
+
meta = {
29
29
+
homepage = "https://github.com/haesbaert/ocaml-${pname}";
30
30
+
description = "IO Multiplexers for OCaml";
31
31
+
license = with lib.licenses; [ isc ];
32
32
+
maintainers = with lib.maintainers; [ toastal ];
33
33
+
};
34
34
+
}
+2
pkgs/top-level/ocaml-packages.nix
···
663
663
664
664
integers_stubs_js = callPackage ../development/ocaml-modules/integers_stubs_js { };
665
665
666
666
+
iomux = callPackage ../development/ocaml-modules/iomux { };
667
667
+
666
668
io-page = callPackage ../development/ocaml-modules/io-page { };
667
669
668
670
ipaddr = callPackage ../development/ocaml-modules/ipaddr { };