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
1
{ buildDunePackage, containers
2
2
, dune-configurator
3
3
, gen, iter, qcheck-core
4
4
+
, mdx
4
5
}:
5
6
6
7
buildDunePackage {
···
8
9
9
10
inherit (containers) src version doCheck;
10
11
11
11
-
duneVersion = "3";
12
12
-
13
12
buildInputs = [ dune-configurator ];
13
13
+
nativeCheckInputs = [ mdx.bin ];
14
14
checkInputs = [ gen iter qcheck-core ];
15
15
16
16
propagatedBuildInputs = [ containers ];
+2
-4
pkgs/development/ocaml-modules/containers/default.nix
···
5
5
}:
6
6
7
7
buildDunePackage rec {
8
8
-
version = "3.11";
8
8
+
version = "3.12";
9
9
pname = "containers";
10
10
-
11
11
-
duneVersion = "3";
12
10
13
11
src = fetchFromGitHub {
14
12
owner = "c-cube";
15
13
repo = "ocaml-containers";
16
14
rev = "v${version}";
17
17
-
hash = "sha256-tGAsg98/T6VKvG95I4qioabWM3TEKrDKlsrfUJqxCyM=";
15
15
+
hash = "sha256-15Wd6k/NvjAvTmxlPlZPClODBtFXM6FG3VxniC66u88=";
18
16
};
19
17
20
18
buildInputs = [ dune-configurator ];