ocamlPackages.biocaml: init at 0.10.0

This commit is contained in:
Ben Darwin 2019-11-25 10:53:58 -05:00
parent 6b8de994a1
commit eddfe95f29
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ stdenv, buildDunePackage, fetchFromGitHub
, ounit, async, base64, camlzip, cfstream
, core, ppx_jane, ppx_sexp_conv, rresult, uri, xmlm }:
buildDunePackage rec {
pname = "biocaml";
version = "0.10.0";
owner = "biocaml";
minimumOCamlVersion = "4.07";
src = fetchFromGitHub {
inherit owner;
repo = pname;
rev = "v${version}";
sha256 = "0dghqx6jbzihmga8jjwwavs0wqksgcns4z1nmwj0ds9ik3mcra30";
};
buildInputs = [ ppx_jane ppx_sexp_conv ];
checkInputs = [ ounit ];
propagatedBuildInputs = [ async base64 camlzip cfstream core rresult uri xmlm ];
meta = with stdenv.lib; {
description = "Bioinformatics library for Ocaml";
homepage = "http://${owner}.github.io/${pname}";
maintainers = [ maintainers.bcdarwin ];
license = licenses.gpl2;
};
}

View File

@ -73,6 +73,8 @@ let
bigstringaf = callPackage ../development/ocaml-modules/bigstringaf { };
biocaml = callPackage ../development/ocaml-modules/biocaml { };
bistro = callPackage ../development/ocaml-modules/bistro { };
bitstring = callPackage ../development/ocaml-modules/bitstring { };