nixpkgs-suyu/pkgs/development/ocaml-modules/sha/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
733 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, stdlib-shims, dune-configurator, ounit }:
2021-01-28 12:21:47 +01:00
buildDunePackage rec {
pname = "sha";
2021-12-08 20:29:09 +01:00
version = "1.15.1";
2021-01-28 12:21:47 +01:00
src = fetchurl {
url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
2021-12-08 20:29:09 +01:00
sha256 = "sha256-cRtjydvwgXgimi6F3C48j7LrWgfMO6m9UJKjKlxvp0Q=";
2021-01-28 12:21:47 +01:00
};
2021-06-06 12:50:06 +02:00
useDune2 = true;
buildInputs = [ dune-configurator ];
2021-06-06 12:50:06 +02:00
propagatedBuildInputs = [
stdlib-shims
];
2021-01-28 12:21:47 +01:00
doCheck = true;
2021-06-06 12:50:06 +02:00
checkInputs = [
ounit
];
2021-01-28 12:21:47 +01:00
meta = with lib; {
description = "Binding for SHA interface code in OCaml";
2021-06-06 12:50:06 +02:00
homepage = "https://github.com/djs55/ocaml-sha/";
2021-01-28 12:21:47 +01:00
license = licenses.isc;
2021-06-06 12:50:06 +02:00
maintainers = with maintainers; [ arthurteisseire ];
2021-01-28 12:21:47 +01:00
};
}