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
1
{ lib, buildDunePackage, fetchFromGitLab
2
2
-
, camlzip, ocamlgraph, parmap, re, stdlib-shims
3
3
-
, base64, bz2, extlib, cudf
4
4
-
, dpkg, git, ocaml, ounit, python39, python39Packages
2
2
+
, ocamlgraph, parmap, re, stdlib-shims
3
3
+
, base64, extlib, cudf
4
4
+
, ocaml, ounit
5
5
}:
6
6
7
7
buildDunePackage rec {
···
15
15
sha256 = "sha256-K0fYSAWV48Rers/foDrEIqieyJ0PvpXkuYrFrZGBkkE=";
16
16
};
17
17
18
18
-
minimalOCamlVersion = "4.03";
19
19
-
useDune2 = true;
18
18
+
minimalOCamlVersion = "4.07";
20
19
21
20
buildInputs = [
22
21
parmap
···
24
23
25
24
propagatedBuildInputs = [
26
25
base64
27
27
-
bz2
28
28
-
camlzip
29
26
cudf
30
27
extlib
31
28
ocamlgraph
···
33
30
stdlib-shims
34
31
];
35
32
36
36
-
nativeCheckInputs = [
37
37
-
python39 # Replaces: conf-python-3
38
38
-
python39Packages.pyyaml # Replaces: conf-python3-yaml
39
39
-
git
40
40
-
];
41
33
checkInputs = [
42
42
-
dpkg # Replaces: conf-dpkg
43
34
ounit
44
35
];
45
45
-
doCheck = false; # Tests are failing.
46
46
-
# To enable tests use: lib.versionAtLeast ocaml.version "4.04";
36
36
+
doCheck = lib.versionAtLeast ocaml.version "4.08";
47
37
48
38
meta = with lib; {
49
39
description = "Dose library (part of Mancoosi tools)";