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

37 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, buildDunePackage, fetchFromGitHub, fetchpatch
2019-11-25 15:53:58 +00:00
, ounit, async, base64, camlzip, cfstream
, core, ppx_jane, ppx_sexp_conv, rresult, uri, xmlm }:
buildDunePackage rec {
pname = "biocaml";
version = "0.10.1";
2019-11-25 15:53:58 +00:00
2020-10-29 05:24:51 +00:00
useDune2 = true;
2019-11-25 15:53:58 +00:00
minimumOCamlVersion = "4.07";
src = fetchFromGitHub {
2020-10-29 05:24:51 +00:00
owner = "biocaml";
2019-11-25 15:53:58 +00:00
repo = pname;
rev = "v${version}";
sha256 = "1f19nc8ld0iv45jjnsvaah3ddj88s2n9wj8mrz726kzg85cfr8xj";
2019-11-25 15:53:58 +00:00
};
# fix compilation without and disable -unsafe-string, needed for Ocaml 4.10:
patches = [ (fetchpatch {
url = "https://github.com/biocaml/biocaml/commit/597fa7b0d203684e45ffe03f56c74335b6173ffc.patch";
sha256 = "0b8jdg215cv2k4y3ww7vak2ag5v6v9w8b76qjivr5d1qxz47mqxv";
}) ];
2019-11-25 15:53:58 +00:00
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://${pname}.org";
2019-11-25 15:53:58 +00:00
maintainers = [ maintainers.bcdarwin ];
license = licenses.gpl2;
};
}