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:
parent
b4fcbf4095
commit
086fbfa308
25
pkgs/development/ocaml-modules/owee/default.nix
Normal file
25
pkgs/development/ocaml-modules/owee/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user