Skip to content

Commit

Permalink
ocamlPackages.uuidm: 0.9.5 -> 0.9.6
Browse files Browse the repository at this point in the history
vbgl committed Oct 14, 2017

Verified

This commit was signed with the committer’s verified signature. The key has expired.
vbgl Vincent Laporte
1 parent 27bcd6c commit 415db05
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pkgs/development/ocaml-modules/uuidm/default.nix
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 415db05

Please sign in to comment.