ocamlPackages.owee: 0.2 -> 0.3

Ensures compatibility with OCaml 4.08
This commit is contained in:
Vincent Laporte 2019-09-16 06:29:15 +00:00 committed by Vincent Laporte
parent 8109be4859
commit 1623510119

View file

@ -1,25 +1,21 @@
{ stdenv, fetchFromGitHub, ocaml, findlib }: { lib, buildDunePackage, fetchFromGitHub }:
stdenv.mkDerivation rec { buildDunePackage rec {
name = "ocaml${ocaml.version}-owee-${version}"; minimumOCamlVersion = "4.06";
version = "0.2"; pname = "owee";
version = "0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "let-def"; owner = "let-def";
repo = "owee"; repo = "owee";
rev = "v${version}"; rev = "v${version}";
sha256 = "025a8sm03mm9qr7grdmdhzx7pyrd0dr7ndr5mbj5baalc0al132z"; sha256 = "0jp8ca57488d7sj2nqy4yxcdpda6sxx51yyi8k6888hbinhyqp0j";
}; };
buildInputs = [ ocaml findlib ];
createFindlibDestdir = true;
meta = { meta = {
description = "An experimental OCaml library to work with DWARF format"; description = "An experimental OCaml library to work with DWARF format";
inherit (src.meta) homepage; inherit (src.meta) homepage;
inherit (ocaml.meta) platforms; license = lib.licenses.mit;
license = stdenv.lib.licenses.mit; maintainers = [ lib.maintainers.vbgl ];
maintainers = [ stdenv.lib.maintainers.vbgl ];
}; };
} }