tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ocamlPackages.containers: 3.11 → 3.12
Vincent Laporte
2 years ago
9784de79
a1f529bf
+4
-6
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
containers
data.nix
default.nix
+2
-2
pkgs/development/ocaml-modules/containers/data.nix
···
1
{ buildDunePackage, containers
2
, dune-configurator
3
, gen, iter, qcheck-core
0
4
}:
5
6
buildDunePackage {
···
8
9
inherit (containers) src version doCheck;
10
11
-
duneVersion = "3";
12
-
13
buildInputs = [ dune-configurator ];
0
14
checkInputs = [ gen iter qcheck-core ];
15
16
propagatedBuildInputs = [ containers ];
···
1
{ buildDunePackage, containers
2
, dune-configurator
3
, gen, iter, qcheck-core
4
+
, mdx
5
}:
6
7
buildDunePackage {
···
9
10
inherit (containers) src version doCheck;
11
0
0
12
buildInputs = [ dune-configurator ];
13
+
nativeCheckInputs = [ mdx.bin ];
14
checkInputs = [ gen iter qcheck-core ];
15
16
propagatedBuildInputs = [ containers ];
+2
-4
pkgs/development/ocaml-modules/containers/default.nix
···
5
}:
6
7
buildDunePackage rec {
8
-
version = "3.11";
9
pname = "containers";
10
-
11
-
duneVersion = "3";
12
13
src = fetchFromGitHub {
14
owner = "c-cube";
15
repo = "ocaml-containers";
16
rev = "v${version}";
17
-
hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM=";
18
};
19
20
buildInputs = [ dune-configurator ];
···
5
}:
6
7
buildDunePackage rec {
8
+
version = "3.12";
9
pname = "containers";
0
0
10
11
src = fetchFromGitHub {
12
owner = "c-cube";
13
repo = "ocaml-containers";
14
rev = "v${version}";
15
+
hash = "sha256-15Wd6k/NvjAvTmxlPlZPClODBtFXM6FG3VxniC66u88=";
16
};
17
18
buildInputs = [ dune-configurator ];