ocamlPackages.duff: 0.4 → 0.5

+7 -9
+7 -9
pkgs/development/ocaml-modules/duff/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, fetchpatch 2 - , stdlib-shims, bigarray-compat, fmt 3 , alcotest, hxd, crowbar, bigstringaf 4 }: 5 6 buildDunePackage rec { 7 pname = "duff"; 8 - version = "0.4"; 9 - 10 - useDune2 = true; 11 12 src = fetchurl { 13 - url = "https://github.com/mirage/duff/releases/download/v${version}/duff-v${version}.tbz"; 14 - sha256 = "4795e8344a2c2562e0ef6c44ab742334b5cd807637354715889741b20a461da4"; 15 }; 16 17 - propagatedBuildInputs = [ stdlib-shims bigarray-compat fmt ]; 18 19 - doCheck = true; 20 checkInputs = [ 21 alcotest 22 crowbar
··· 1 + { lib, fetchurl, buildDunePackage, ocaml 2 + , fmt 3 , alcotest, hxd, crowbar, bigstringaf 4 }: 5 6 buildDunePackage rec { 7 pname = "duff"; 8 + version = "0.5"; 9 10 src = fetchurl { 11 + url = "https://github.com/mirage/duff/releases/download/v${version}/duff-${version}.tbz"; 12 + sha256 = "sha256-0eqpfPWNOHYjkcjXRnZUTUFF0/L9E+TNoOqKCETN5hI="; 13 }; 14 15 + propagatedBuildInputs = [ fmt ]; 16 17 + doCheck = lib.versionAtLeast ocaml.version "4.08"; 18 checkInputs = [ 19 alcotest 20 crowbar