summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uuidm/default.nix
blob: 0473f64bcdf95433c47f3abfd69590d0c98b5d87 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{stdenv, fetchurl, ocaml, findlib}:

stdenv.mkDerivation rec {
  version = "0.9.5";
  name = "uuidm-${version}"; 
  src = fetchurl {
    url = "http://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
    sha256 = "03bgxs119bphv9ggg97nsl5m61s43ixgby05hhggv16iadx9zndm";
  };

  unpackCmd = "tar -xf $curSrc";

  buildInputs = [ocaml findlib];

  configurePhase = "ocaml setup.ml -configure --prefix $prefix";
  buildPhase = "ocaml setup.ml -build";
  installPhase = "ocaml setup.ml -install";

  createFindlibDestdir = true;

  meta = with stdenv.lib; {
    description = "An OCaml module implementing 128 bits universally unique identifiers version 3, 5 (name based with MD5, SHA-1 hashing) and 4 (random based) according to RFC 4122.";
    homepage = http://erratique.ch/software/uuidm;
    license = licenses.bsd3;
    platforms = ocaml.meta.platforms;
    maintainers = [ maintainers.maurer ];
  };
}