ocamlPackages.sha: 1.15.1 → 1.15.2

This commit is contained in:
Vincent Laporte 2022-12-08 07:20:52 +01:00 committed by Vincent Laporte
parent 062b7f42fd
commit b28b8118f2
3 changed files with 9 additions and 11 deletions

View File

@ -11,7 +11,7 @@ let
ptmap
camlp5
sha
dune_2
dune_3
luv
extlib
] else if lib.versionAtLeast version "4.0"
@ -23,7 +23,7 @@ let
ptmap
camlp5
sha
dune_2
dune_3
luv
extlib-1-7-7
] else with ocaml-ng.ocamlPackages_4_05; [

View File

@ -17,6 +17,7 @@
buildDunePackage rec {
pname = "plotkicadsch";
duneVersion = "3";
inherit (kicadsch) src version;

View File

@ -1,25 +1,22 @@
{ lib, fetchurl, buildDunePackage, stdlib-shims, dune-configurator, ounit }:
{ lib, fetchurl, buildDunePackage, stdlib-shims, ounit2 }:
buildDunePackage rec {
pname = "sha";
version = "1.15.1";
version = "1.15.2";
duneVersion = "3";
src = fetchurl {
url = "https://github.com/djs55/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
sha256 = "sha256-cRtjydvwgXgimi6F3C48j7LrWgfMO6m9UJKjKlxvp0Q=";
url = "https://github.com/djs55/ocaml-${pname}/releases/download/${version}/${pname}-${version}.tbz";
hash = "sha256-P71Xs5p8QAaOtBrh7MuhQJOL6144BqTLvXlZOyGD/7c=";
};
useDune2 = true;
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [
stdlib-shims
];
doCheck = true;
checkInputs = [
ounit
ounit2
];
meta = with lib; {