ocamlPackages.imagelib: use Dune 2

This commit is contained in:
Vincent Laporte 2020-11-01 07:49:29 +01:00 committed by ehmry
parent c386d3d211
commit 73c60d64a2
2 changed files with 4 additions and 1 deletions

View File

@ -4,6 +4,9 @@ buildDunePackage rec {
minimumOCamlVersion = "4.07";
version = "20191011";
pname = "imagelib";
useDune2 = true;
src = fetchFromGitHub {
owner = "rlepigre";
repo = "ocaml-imagelib";

View File

@ -2,7 +2,7 @@
buildDunePackage {
pname = "imagelib-unix";
inherit (imagelib) version src meta;
inherit (imagelib) version src useDune2 meta;
propagatedBuildInputs = [ imagelib ];
}