mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
b6eac37960
ocamlPackages.dune_3: enable for OCaml < 4.08
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config
|
|
, optint
|
|
, fmt, rresult, bos, fpath, astring, alcotest
|
|
, withFreestanding ? false
|
|
, ocaml-freestanding
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
version = "0.4.0";
|
|
pname = "checkseum";
|
|
|
|
minimalOCamlVersion = "4.07";
|
|
duneVersion = "3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-${version}.tbz";
|
|
hash = "sha256-K6QPMts5+hxH2a+WQ1N0lwMBoshG2T0bSozNgzRvAlo=";
|
|
};
|
|
|
|
buildInputs = [ dune-configurator ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedBuildInputs = [
|
|
optint
|
|
] ++ lib.optionals withFreestanding [
|
|
ocaml-freestanding
|
|
];
|
|
|
|
checkInputs = [
|
|
alcotest
|
|
bos
|
|
astring
|
|
fmt
|
|
fpath
|
|
rresult
|
|
];
|
|
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
|
|
meta = {
|
|
description = "ADLER-32 and CRC32C Cyclic Redundancy Check";
|
|
homepage = "https://github.com/mirage/checkseum";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
mainProgram = "checkseum.checkseum";
|
|
};
|
|
}
|