ocamlPackages.uuidm: 0.9.5 -> 0.9.6

wip/yesman
Vincent Laporte 7 years ago
parent 27bcd6c426
commit 415db05504
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
  1. 12
      pkgs/development/ocaml-modules/uuidm/default.nix

@ -1,20 +1,18 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild }:
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, opam, cmdliner }:
stdenv.mkDerivation rec {
version = "0.9.5";
version = "0.9.6";
name = "uuidm-${version}";
src = fetchurl {
url = "http://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
sha256 = "03bgxs119bphv9ggg97nsl5m61s43ixgby05hhggv16iadx9zndm";
sha256 = "0hz4fdx0x16k0pw9995vkz5d1hmzz6b16wck9li399rcbfnv5jlc";
};
unpackCmd = "tar -xf $curSrc";
buildInputs = [ ocaml findlib ocamlbuild ];
buildInputs = [ ocaml findlib ocamlbuild topkg opam cmdliner ];
configurePhase = "ocaml setup.ml -configure --prefix $prefix";
buildPhase = "ocaml setup.ml -build";
installPhase = "ocaml setup.ml -install";
inherit (topkg) buildPhase installPhase;
createFindlibDestdir = true;

Loading…
Cancel
Save