1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

ocamlPackages.containers: 0.16 -> 0.18

This commit is contained in:
Ricardo M. Correia 2016-08-03 18:35:06 +02:00
parent 1664279f0e
commit e5db1995a6

View file

@ -1,4 +1,5 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit, ocaml_oasis, result }:
{ stdenv, fetchFromGitHub, ocaml, findlib, cppo, gen, sequence, qtest, ounit, ocaml_oasis, result
, qcheck }:
let
@ -6,7 +7,7 @@ let
let v = stdenv.lib.getVersion ocaml; in
"${p}/lib/ocaml/${v}/site-lib";
version = "0.16";
version = "0.18";
in
@ -17,10 +18,10 @@ stdenv.mkDerivation {
owner = "c-cube";
repo = "ocaml-containers";
rev = "${version}";
sha256 = "1mc33b4nvn9k3r4k56amxr804bg5ndhxv92cmjzg5pf4qh220c2h";
sha256 = "169j8vqg8h70wbldjg610jqikfk23ggw8zypmpzv3piym5p1dfiw";
};
buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ocaml_oasis ];
buildInputs = [ ocaml findlib cppo gen sequence qtest ounit ocaml_oasis qcheck ];
propagatedBuildInputs = [ result ];