tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.dose3: cleanup
Vincent Laporte
2 years ago
b4e057c8
635e71f6
+5
-15
1 changed file
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
dose3
default.nix
+5
-15
pkgs/development/ocaml-modules/dose3/default.nix
···
1
{ lib, buildDunePackage, fetchFromGitLab
2
-
, camlzip, ocamlgraph, parmap, re, stdlib-shims
3
-
, base64, bz2, extlib, cudf
4
-
, dpkg, git, ocaml, ounit, python39, python39Packages
5
}:
6
7
buildDunePackage rec {
···
15
sha256 = "sha256-K0fYSAWV48Rers/foDrEIqieyJ0PvpXkuYrFrZGBkkE=";
16
};
17
18
-
minimalOCamlVersion = "4.03";
19
-
useDune2 = true;
20
21
buildInputs = [
22
parmap
···
24
25
propagatedBuildInputs = [
26
base64
27
-
bz2
28
-
camlzip
29
cudf
30
extlib
31
ocamlgraph
···
33
stdlib-shims
34
];
35
36
-
nativeCheckInputs = [
37
-
python39 # Replaces: conf-python-3
38
-
python39Packages.pyyaml # Replaces: conf-python3-yaml
39
-
git
40
-
];
41
checkInputs = [
42
-
dpkg # Replaces: conf-dpkg
43
ounit
44
];
45
-
doCheck = false; # Tests are failing.
46
-
# To enable tests use: lib.versionAtLeast ocaml.version "4.04";
47
48
meta = with lib; {
49
description = "Dose library (part of Mancoosi tools)";
···
1
{ lib, buildDunePackage, fetchFromGitLab
2
+
, ocamlgraph, parmap, re, stdlib-shims
3
+
, base64, extlib, cudf
4
+
, ocaml, ounit
5
}:
6
7
buildDunePackage rec {
···
15
sha256 = "sha256-K0fYSAWV48Rers/foDrEIqieyJ0PvpXkuYrFrZGBkkE=";
16
};
17
18
+
minimalOCamlVersion = "4.07";
0
19
20
buildInputs = [
21
parmap
···
23
24
propagatedBuildInputs = [
25
base64
0
0
26
cudf
27
extlib
28
ocamlgraph
···
30
stdlib-shims
31
];
32
0
0
0
0
0
33
checkInputs = [
0
34
ounit
35
];
36
+
doCheck = lib.versionAtLeast ocaml.version "4.08";
0
37
38
meta = with lib; {
39
description = "Dose library (part of Mancoosi tools)";