depot/third_party/nixpkgs/pkgs/development/tools/ocaml/crunch/default.nix

33 lines
793 B
Nix
Raw Normal View History

{ lib, buildDunePackage, fetchurl, ocaml, cmdliner, ptime }:
buildDunePackage rec {
pname = "crunch";
version = "3.3.1";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/mirage/ocaml-crunch/releases/download/v${version}/crunch-${version}.tbz";
sha256 = "sha256-LFug1BELy7dzHLpOr7bESnSHw/iMGtR0AScbaf+o7Wo=";
};
buildInputs = [ cmdliner ];
propagatedBuildInputs = [ ptime ];
outputs = [ "lib" "bin" "out" ];
installPhase = ''
dune install --prefix=$bin --libdir=$lib/lib/ocaml/${ocaml.version}/site-lib/
'';
meta = {
homepage = "https://github.com/mirage/ocaml-crunch";
description = "Convert a filesystem into a static OCaml module";
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}