mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
ocamlPackages.alcotest: 0.4.5 -> 0.7.2
This commit is contained in:
parent
66b9602a2f
commit
dd45d2552f
@ -1,15 +1,21 @@
|
||||
{ stdenv, buildOcaml, fetchzip, cmdliner, stringext }:
|
||||
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, topkg, opam, cmdliner, astring, fmt, result }:
|
||||
|
||||
buildOcaml rec {
|
||||
name = "alcotest";
|
||||
version = "0.4.5";
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocaml${ocaml.version}-alcotest-${version}";
|
||||
version = "0.7.2";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/mirage/alcotest/archive/${version}.tar.gz";
|
||||
sha256 = "1wcn9hkjf4cbnrz99w940qfjpi0lvd8v63yxwpnafkff871dwk6k";
|
||||
sha256 = "1qgsz2zz5ky6s5pf3j3shc4fjc36rqnjflk8x0wl1fcpvvkr52md";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cmdliner stringext ];
|
||||
buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
|
||||
|
||||
propagatedBuildInputs = [ cmdliner astring fmt result ];
|
||||
|
||||
inherit (topkg) buildPhase installPhase;
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/mirage/alcotest;
|
||||
|
Loading…
Reference in New Issue
Block a user