nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

ocamlPackages.checkseum: 0.4.0 → 0.5.2

authored by

Vincent Laporte and committed by
Vincent Laporte
8121c7a3 cbe1e97e

+3 -9
+3 -9
pkgs/development/ocaml-modules/checkseum/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, ocaml, dune-configurator, pkg-config 1 + { lib, fetchurl, buildDunePackage, ocaml, dune-configurator 2 2 , optint 3 3 , fmt, rresult, bos, fpath, astring, alcotest 4 - , withFreestanding ? false 5 - , ocaml-freestanding 6 4 }: 7 5 8 6 buildDunePackage rec { 9 - version = "0.4.0"; 7 + version = "0.5.2"; 10 8 pname = "checkseum"; 11 9 12 10 minimalOCamlVersion = "4.07"; 13 - duneVersion = "3"; 14 11 15 12 src = fetchurl { 16 13 url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-${version}.tbz"; 17 - hash = "sha256-K6QPMts5+hxH2a+WQ1N0lwMBoshG2T0bSozNgzRvAlo="; 14 + hash = "sha256-nl5P1EBctKi03wCHdUMlGDPgimSZ70LMuNulgt8Nr8g="; 18 15 }; 19 16 20 17 buildInputs = [ dune-configurator ]; 21 - nativeBuildInputs = [ pkg-config ]; 22 18 propagatedBuildInputs = [ 23 19 optint 24 - ] ++ lib.optionals withFreestanding [ 25 - ocaml-freestanding 26 20 ]; 27 21 28 22 checkInputs = [