about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/extlib/default.nix
blob: cd9f6d9b86ce030eaebf3b3d3c413da8f268f902 (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";
    hash = "sha512-I4asafA36lIINcBiTTmun7/+Q6ILGOJH3gMiMu1vQZ1me1PSMUxvVtxx02i/C2IBpWwvPypb39kzdmxabLmHaA==";
  };

  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 ];
  };
}