ocamlPackages_latest.phylogenetics: init at unstable-2019-11-15
This commit is contained in:
parent
13f55534cb
commit
3fa5a19cf8
28
pkgs/development/ocaml-modules/phylogenetics/default.nix
Normal file
28
pkgs/development/ocaml-modules/phylogenetics/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, buildDunePackage, fetchFromGitHub, ppx_deriving
|
||||||
|
, alcotest, biocaml, gnuplot, lacaml, menhir, owl }:
|
||||||
|
|
||||||
|
buildDunePackage rec {
|
||||||
|
pname = "phylogenetics";
|
||||||
|
version = "unstable-2019-11-15";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "biocaml";
|
||||||
|
repo = pname;
|
||||||
|
rev = "91c03834db065cf4a86f33affbb9cfd216defc9f";
|
||||||
|
sha256 = "0i9m0633a6a724as35ix8z3p1gj267cl0hmqrpw4qfq39zxmgnxb";
|
||||||
|
};
|
||||||
|
|
||||||
|
minimumOCamlVersion = "4.08"; # e.g., uses Float.min
|
||||||
|
|
||||||
|
checkInputs = [ alcotest ];
|
||||||
|
propagatedBuildInputs = [ biocaml gnuplot lacaml menhir owl ppx_deriving ];
|
||||||
|
|
||||||
|
doCheck = false; # many tests require bppsuite
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
inherit (std.meta) homepage;
|
||||||
|
description = "Bioinformatics library for Ocaml";
|
||||||
|
maintainers = [ maintainers.bcdarwin ];
|
||||||
|
license = licenses.cecill-b;
|
||||||
|
};
|
||||||
|
}
|
@ -629,6 +629,8 @@ let
|
|||||||
|
|
||||||
pgsolver = callPackage ../development/ocaml-modules/pgsolver { };
|
pgsolver = callPackage ../development/ocaml-modules/pgsolver { };
|
||||||
|
|
||||||
|
phylogenetics = callPackage ../development/ocaml-modules/phylogenetics { };
|
||||||
|
|
||||||
piqi = callPackage ../development/ocaml-modules/piqi {
|
piqi = callPackage ../development/ocaml-modules/piqi {
|
||||||
base64 = base64_2;
|
base64 = base64_2;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user