mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
ocamlPackages.owee: 0.2 -> 0.3
Ensures compatibility with OCaml 4.08
This commit is contained in:
parent
8109be4859
commit
1623510119
1 changed files with 8 additions and 12 deletions
|
@ -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 ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue