lol

ocamlPackages.owee: init at 0.2

Owee is an experimental library to work with DWARF format.

Homepage: https://github.com/let-def/owee

+27
+25
pkgs/development/ocaml-modules/owee/default.nix
··· 1 + { stdenv, fetchFromGitHub, ocaml, findlib }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "ocaml${ocaml.version}-owee-${version}"; 5 + version = "0.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "let-def"; 9 + repo = "owee"; 10 + rev = "v${version}"; 11 + sha256 = "025a8sm03mm9qr7grdmdhzx7pyrd0dr7ndr5mbj5baalc0al132z"; 12 + }; 13 + 14 + buildInputs = [ ocaml findlib ]; 15 + 16 + createFindlibDestdir = true; 17 + 18 + meta = { 19 + description = "An experimental OCaml library to work with DWARF format"; 20 + inherit (src.meta) homepage; 21 + inherit (ocaml.meta) platforms; 22 + license = stdenv.lib.licenses.mit; 23 + maintainers = [ stdenv.lib.maintainers.vbgl ]; 24 + }; 25 + }
+2
pkgs/top-level/ocaml-packages.nix
··· 351 351 352 352 otr = callPackage ../development/ocaml-modules/otr { }; 353 353 354 + owee = callPackage ../development/ocaml-modules/owee { }; 355 + 354 356 ounit = callPackage ../development/ocaml-modules/ounit { }; 355 357 356 358 piqi = callPackage ../development/ocaml-modules/piqi { };