ocamlPackages.owee: init at 0.2

Owee is an experimental library to work with DWARF format.

Homepage: https://github.com/let-def/owee
This commit is contained in:
Vincent Laporte 2017-01-10 18:32:58 +00:00
parent b4fcbf4095
commit 086fbfa308
2 changed files with 27 additions and 0 deletions

View File

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

View File

@ -351,6 +351,8 @@ let
otr = callPackage ../development/ocaml-modules/otr { };
owee = callPackage ../development/ocaml-modules/owee { };
ounit = callPackage ../development/ocaml-modules/ounit { };
piqi = callPackage ../development/ocaml-modules/piqi { };