Skip to content

Commit

Permalink
ocamlPackages.owee: init at 0.2
Browse files Browse the repository at this point in the history
Owee is an experimental library to work with DWARF format.

Homepage: https://github.com/let-def/owee
  • Loading branch information
vbgl committed Jan 12, 2017
1 parent b4fcbf4 commit 086fbfa
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/development/ocaml-modules/owee/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/ocaml-packages.nix
Expand Up @@ -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 { };
Expand Down

0 comments on commit 086fbfa

Please sign in to comment.