nixpkgs/pkgs/by-name/vi/viennarna/package.nix

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

39 lines
724 B
Nix
Raw Normal View History

2021-04-27 10:17:35 +00:00
{ lib
, stdenv
2021-01-02 12:14:36 +00:00
, fetchurl
, gsl
, mpfr
, perl
, python3
}:
stdenv.mkDerivation rec {
2023-08-23 07:20:02 +00:00
pname = "viennarna";
2022-12-02 17:20:04 +00:00
version = "2.5.1";
2021-01-02 12:14:36 +00:00
src = fetchurl {
2023-08-23 07:20:02 +00:00
url = "https://www.tbi.univie.ac.at/RNA/download/sourcecode/2_5_x/ViennaRNA-${version}.tar.gz";
2022-12-02 17:20:04 +00:00
sha256 = "sha256-BUAEN88VWV4QsaJd9snEiFbzVhMPnR44D6iGa20n9Fc=";
2021-01-02 12:14:36 +00:00
};
buildInputs = [
gsl
mpfr
perl
python3
];
configureFlags = [
"--with-cluster"
"--with-kinwalker"
];
meta = with lib; {
2021-01-02 12:14:36 +00:00
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;
};
}