ocamlPackages.gen: 1.0 → 1.1

This commit is contained in:
Vincent Laporte 2023-03-21 13:05:59 +01:00
parent 942e6fd471
commit 5350e7282d
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F

View File

@ -1,22 +1,21 @@
{ lib, buildDunePackage, fetchFromGitHub, ocaml
, dune-configurator
, seq
, qcheck, ounit2
}:
buildDunePackage rec {
version = "1.0";
version = "1.1";
pname = "gen";
minimalOCamlVersion = "4.03";
duneVersion = "3";
src = fetchFromGitHub {
owner = "c-cube";
repo = "gen";
rev = "v${version}";
hash = "sha256-YWoVcl2TQoMIgU1LoKL16ia31zJjwAMwuphtSXnhtvw=";
hash = "sha256-ZytPPGhmt/uANaSgkgsUBOwyQ9ka5H4J+5CnJpEdrNk=";
};
buildInputs = [ dune-configurator ];
propagatedBuildInputs = [ seq ];
checkInputs = [ qcheck ounit2 ];