mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
ocamlPackages.stringext: 1.4.0 -> 1.4.3
ocamlPackages.qcheck: 0.4.0.1 -> 0.6
This commit is contained in:
parent
582c3edcfa
commit
c8c673568c
@ -1,18 +1,18 @@
|
||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, oasis, ounit }:
|
||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, ounit }:
|
||||
|
||||
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4";
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
name = "ocaml-qcheck-0.4.0.1";
|
||||
name = "ocaml${ocaml.version}-qcheck-0.6";
|
||||
src = fetchzip {
|
||||
url = https://github.com/c-cube/qcheck/archive/0.4.0.1.tar.gz;
|
||||
sha256 = "0j2jdrfz8rrslgjihnfgg8yy12860z2vvf7hqzjbmfmf03hz4pgv";
|
||||
url = https://github.com/c-cube/qcheck/archive/0.6.tar.gz;
|
||||
sha256 = "14rlg0jh4p12sd9xagppacsbfw0239anbq5r1aqhsqxlfmzbmi1p";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ocamlbuild oasis ounit ];
|
||||
buildInputs = [ ocaml findlib ocamlbuild ounit ];
|
||||
|
||||
configureFlags = "--enable-tests --enable-ounit";
|
||||
configureFlags = "--enable-tests";
|
||||
|
||||
doCheck = true;
|
||||
checkPhase = "ocaml setup.ml -test";
|
||||
|
@ -3,14 +3,14 @@
|
||||
, doCheck ? stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"
|
||||
}:
|
||||
|
||||
let version = "1.4.0"; in
|
||||
let version = "1.4.3"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-stringext-${version}";
|
||||
name = "ocaml${ocaml.version}-stringext-${version}";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/rgrinberg/stringext/archive/v${version}.tar.gz";
|
||||
sha256 = "1jp0x9rkss8a48z9wbnc4v5zvmnysin30345psl3xnxb2aqzwlii";
|
||||
sha256 = "121k79vjazvsd254yg391fp4spsd1p32amccrahd0g6hjhf5w6sl";
|
||||
};
|
||||
|
||||
buildInputs = [ ocaml findlib ocamlbuild ounit qcheck ];
|
||||
|
@ -515,9 +515,7 @@ let
|
||||
|
||||
pycaml = callPackage ../development/ocaml-modules/pycaml { };
|
||||
|
||||
qcheck = callPackage ../development/ocaml-modules/qcheck {
|
||||
oasis = ocaml_oasis;
|
||||
};
|
||||
qcheck = callPackage ../development/ocaml-modules/qcheck { };
|
||||
|
||||
qtest = callPackage ../development/ocaml-modules/qtest { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user