summary refs log tree commit diff
path: root/pkgs/development/libraries/science/biology/biolib/default.nix
blob: 7418bdb6dfe01be89827816e9f0b63be6d2346d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, cmake, R, zlib }:

stdenv.mkDerivation rec {
  name = "biolib-${version}";

  version = "0.0.1";

  src = fetchurl {
    url = "http://bio3.xparrot.eu/download/nix-biology/biolib-${version}.tar.gz";
    sha256 = "1la639rs0v4f3ayvarqv0yxwlnwn188bb1v71d2ybw1xr6gdy688";
  };

  buildInputs = [cmake R zlib];

  meta = {
    homepage = "http://biolib.open-bio.org/";
    description = "Shared libraries for the major Bio* languages";
    license = stdenv.lib.licenses.gpl2;
    longDescription = ''
      BioLib brings together a set of opensource libraries written
      in C/C++ and makes them available for major Bio* languages:
      BioPerl, BioRuby, BioPython
    '';
  };
}