about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uuidm/default.nix
blob: 949737d28ee07183b40d9ec1dc5400462e65ecb9 (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
29
30
31
32
33
34
{ lib, stdenv, fetchurl, ocaml, findlib, ocamlbuild, topkg, cmdliner }:

lib.throwIfNot (lib.versionAtLeast ocaml.version "4.08")
  "uuidm is not available for OCaml ${ocaml.version}"

stdenv.mkDerivation rec {
  version = "0.9.8";
  pname = "uuidm";
  src = fetchurl {
    url = "https://erratique.ch/software/uuidm/releases/uuidm-${version}.tbz";
    sha256 = "sha256-/GZbkJVDQu1UY8SliK282kUWAVMfOnpQadUlRT/tJrM=";
  };

  postPatch = ''
    substituteInPlace pkg/META --replace "bytes" ""
  '';

  strictDeps = true;

  nativeBuildInputs = [ ocaml findlib ocamlbuild topkg ];
  configurePlatforms = [];
  buildInputs = [ topkg cmdliner ];

  inherit (topkg) buildPhase installPhase;

  meta = with 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 = "https://erratique.ch/software/uuidm";
    license = licenses.bsd3;
    maintainers = [ maintainers.maurer ];
    mainProgram = "uuidtrip";
    inherit (ocaml.meta) platforms;
  };
}