Introduced biolib package
svn path=/nixpkgs/trunk/; revision=12535
This commit is contained in:
parent
9d0b7c4aa9
commit
07595b0397
@ -8,6 +8,7 @@ stdenv.mkDerivation {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [readline perl gfortran libpng libX11 libXt zlib];
|
buildInputs = [readline perl gfortran libpng libX11 libXt zlib];
|
||||||
|
configureFlags = ["--enable-R-shlib"] ;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "R is a language and environment for statistical computing and graphics";
|
description = "R is a language and environment for statistical computing and graphics";
|
||||||
@ -16,3 +17,5 @@ stdenv.mkDerivation {
|
|||||||
homepage = http://www.r-project.org/;
|
homepage = http://www.r-project.org/;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,21 @@
|
|||||||
|
args: with args;
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "biolib";
|
||||||
|
version = "0.0.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://bio3.xparrot.eu/download/nix-biology/biolib-${version}.tar.gz";
|
||||||
|
sha256 = "1la639rs0v4f3ayvarqv0yxwlnwn188bb1v71d2ybw1xr6gdy688";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [cmake rLang zlib];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "BioLib";
|
||||||
|
longDescription = ''BioLib brings together a set of opensource libraries
|
||||||
|
written in C/C++ and makes them available for major Bio* languages: BioPerl,
|
||||||
|
BioRuby, BioPython'';
|
||||||
|
license = "GPL2";
|
||||||
|
homepage = http://biolib.open-bio.org/;
|
||||||
|
};
|
||||||
|
}
|
@ -7200,6 +7200,11 @@ let pkgs = rec {
|
|||||||
inherit libxml2 guile perl intltool libtool pkgconfig;
|
inherit libxml2 guile perl intltool libtool pkgconfig;
|
||||||
} null;
|
} null;
|
||||||
|
|
||||||
|
|
||||||
|
biolib = import ../development/libraries/science/biology/biolib {
|
||||||
|
inherit fetchurl stdenv readline perl cmake rLang zlib;
|
||||||
|
};
|
||||||
|
|
||||||
emboss = import ../applications/science/biology/emboss {
|
emboss = import ../applications/science/biology/emboss {
|
||||||
inherit fetchurl stdenv readline perl libpng zlib;
|
inherit fetchurl stdenv readline perl libpng zlib;
|
||||||
inherit (xorg) libX11 libXt;
|
inherit (xorg) libX11 libXt;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user