ocamlPackages.duration: use Dune 2
This commit is contained in:
parent
bee0a512d0
commit
30487789ab
|
@ -1,16 +1,18 @@
|
||||||
{ lib, buildDunePackage, fetchurl, alcotest }:
|
{ lib, buildDunePackage, ocaml, fetchurl, alcotest }:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "duration";
|
pname = "duration";
|
||||||
version = "0.1.3";
|
version = "0.1.3";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
|
url = "https://github.com/hannesm/duration/releases/download/${version}/duration-${version}.tbz";
|
||||||
sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
|
sha256 = "0m9r0ayhpl98g9vdxrbjdcllns274jilic5v8xj1x7dphw21p95h";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
||||||
checkInputs = lib.optional doCheck alcotest;
|
checkInputs = [ alcotest ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/hannesm/duration";
|
homepage = "https://github.com/hannesm/duration";
|
||||||
|
|
Loading…
Reference in New Issue