nixpkgs/pkgs/development/ocaml-modules/biotk/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

57 lines
881 B
Nix
Raw Normal View History

2024-04-23 06:50:12 +00:00
{ lib
, buildDunePackage
, fetchurl
, angstrom-unix
, binning
, ocaml-crunch
, camlzip
, core_kernel
2024-07-02 04:33:45 +00:00
, core_unix ? null
, csvfields ? null
2024-04-23 06:50:12 +00:00
, fmt
, gsl
2024-07-02 04:33:45 +00:00
, ppx_csv_conv ? null
2024-04-23 06:50:12 +00:00
, ppx_deriving
, rresult
, tyxml
, uri
, vg
}:
buildDunePackage rec {
pname = "biotk";
2024-07-02 04:33:45 +00:00
version = "0.3";
2024-04-23 06:50:12 +00:00
minimalOCamlVersion = "4.13";
src = fetchurl {
url = "https://github.com/pveber/biotk/releases/download/v${version}/biotk-${version}.tbz";
2024-07-02 04:33:45 +00:00
hash = "sha256-9eRd3qYteUxu/xNEUER/DHodr6cTCuPtSKr38x32gig=";
2024-04-23 06:50:12 +00:00
};
nativeBuildInputs = [ ocaml-crunch ];
buildInputs = [ ppx_csv_conv ];
propagatedBuildInputs = [
angstrom-unix
binning
camlzip
core_kernel
core_unix
csvfields
fmt
gsl
ppx_deriving
rresult
tyxml
uri
vg
];
meta = {
description = "Toolkit for bioinformatics in OCaml";
license = lib.licenses.cecill-c;
};
}