about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/extlib/default.nix
blob: 35b8c59091cc536f37f6f528aebec42e036f728c (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
{ buildDunePackage, lib, fetchurl, cppo }:

buildDunePackage rec {
  pname = "extlib";
  version = "1.7.9";

  minimalOCamlVersion = "4.02";

  src = fetchurl {
    url = "https://ygrek.org/p/release/ocaml-${pname}/${pname}-${version}.tar.gz";
    sha512 = "2386ac69f037ea520835c0624d39ae9fbffe43a20b18e247de032232ed6f419d667b53d2314c6f56dc71d368bf0b6201a56c2f3f2a5bdfd933766c5a6cb98768";
  };

  nativeBuildInputs = [ cppo ];

  doCheck = true;

  meta = {
    homepage = "https://github.com/ygrek/ocaml-extlib";
    description = "Enhancements to the OCaml Standard Library modules";
    license = lib.licenses.lgpl21Only;
    maintainers = [ lib.maintainers.sternenseemann ];
  };
}