mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
39 lines
724 B
Nix
39 lines
724 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, gsl
|
|
, mpfr
|
|
, perl
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "viennarna";
|
|
version = "2.5.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_5_x/ViennaRNA-${version}.tar.gz";
|
|
sha256 = "sha256-BUAEN88VWV4QsaJd9snEiFbzVhMPnR44D6iGa20n9Fc=";
|
|
};
|
|
|
|
buildInputs = [
|
|
gsl
|
|
mpfr
|
|
perl
|
|
python3
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-cluster"
|
|
"--with-kinwalker"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Prediction and comparison of RNA secondary structures";
|
|
homepage = "https://www.tbi.univie.ac.at/RNA/";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|