ocamlPackages.oseq: 0.4 -> 0.5
Diff: https://github.com/c-cube/oseq/compare/v0.4...v0.5 Changelog: https://github.com/c-cube/oseq/releases/tag/v0.5
This commit is contained in:
parent
b9a58b4ade
commit
afd309e2a6
1 changed files with 3 additions and 5 deletions
|
@ -1,21 +1,19 @@
|
||||||
{ lib, fetchFromGitHub, buildDunePackage
|
{ lib, fetchFromGitHub, buildDunePackage
|
||||||
, seq
|
|
||||||
, containers, qcheck
|
, containers, qcheck
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
version = "0.4";
|
version = "0.5";
|
||||||
pname = "oseq";
|
pname = "oseq";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "c-cube";
|
owner = "c-cube";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-FoCBvvPwa/dUCrgDEd0clEKAO7EcpedjaO4v+yUO874=";
|
hash = "sha256-JMIcRyciNvLOE1Gpin7CpcDNSmGYFxZWsDN0X6D/NVI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ seq ];
|
minimalOCamlVersion = "4.08";
|
||||||
|
|
||||||
duneVersion = "3";
|
duneVersion = "3";
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
Loading…
Reference in a new issue