mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ocamlPackages.checkseum: 0.1.1 → 0.2.1
This commit is contained in:
parent
371dce3024
commit
99ebf5ba5b
1 changed files with 7 additions and 5 deletions
|
@ -1,19 +1,21 @@
|
||||||
{ lib, fetchurl, buildDunePackage
|
{ lib, fetchurl, buildDunePackage, dune-configurator
|
||||||
, bigarray-compat, optint
|
, bigarray-compat, optint
|
||||||
, cmdliner, fmt, rresult
|
, fmt, rresult
|
||||||
, alcotest
|
, alcotest
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
version = "0.1.1";
|
version = "0.2.1";
|
||||||
pname = "checkseum";
|
pname = "checkseum";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz";
|
url = "https://github.com/mirage/checkseum/releases/download/v${version}/checkseum-v${version}.tbz";
|
||||||
sha256 = "0aa2r1l65a5hcgciw6n8r5ij4gpgg0cf9k24isybxiaiz63k94d3";
|
sha256 = "1swb44c64pcs4dh9ka9lig6d398qwwkd3kkiajicww6qk7jbh3n5";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmdliner fmt rresult ];
|
buildInputs = [ dune-configurator fmt rresult ];
|
||||||
propagatedBuildInputs = [ bigarray-compat optint ];
|
propagatedBuildInputs = [ bigarray-compat optint ];
|
||||||
checkInputs = lib.optionals doCheck [ alcotest ];
|
checkInputs = lib.optionals doCheck [ alcotest ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue