3
0
Fork 0
forked from mirrors/nixpkgs

ocamlPackages.crunch: 3.1.0 → 3.3.1

This commit is contained in:
Vincent Laporte 2022-08-11 08:31:24 +02:00 committed by Vincent Laporte
parent a06e854f23
commit ec8d3bc39b

View file

@ -1,18 +1,18 @@
{ lib, buildDunePackage, fetchurl, ocaml, cmdliner, ptime }:
{ lib, buildDunePackage, fetchurl, ocaml, cmdliner_1_1, ptime }:
buildDunePackage rec {
pname = "crunch";
version = "3.1.0";
useDune2 = true;
version = "3.3.1";
src = fetchurl {
url = "https://github.com/mirage/ocaml-crunch/releases/download/v${version}/crunch-v${version}.tbz";
sha256 = "0d26715a4h9r1wibnc12xy690m1kan7hrcgbb5qk8x78zsr67lnf";
url = "https://github.com/mirage/ocaml-crunch/releases/download/v${version}/crunch-${version}.tbz";
sha256 = "sha256-LFug1BELy7dzHLpOr7bESnSHw/iMGtR0AScbaf+o7Wo=";
};
propagatedBuildInputs = [ cmdliner ptime ];
buildInputs = [ cmdliner_1_1 ];
propagatedBuildInputs = [ ptime ];
outputs = [ "lib" "bin" "out" ];