biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / biology / exonerate / default.nix
blobf7b6bf6c14cee6d945a17d63e3cece0642890d9e
1 { lib, stdenv, fetchurl, glib, pkg-config }:
3 stdenv.mkDerivation rec {
4   version = "2.4.0";
5   pname = "exonerate";
7   src = fetchurl {
8     url = "http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/${pname}-${version}.tar.gz";
9     sha256 = "0hj0m9xygiqsdxvbg79wq579kbrx1mdrabi2bzqz2zn9qwfjcjgq";
10   };
12   doCheck = true;
14   buildInputs = [ glib ];
16   nativeBuildInputs = [ pkg-config ];
18   meta = with lib; {
19     description = "Generic tool for sequence alignment";
20     homepage = "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate";
21     license = licenses.gpl3;
22     maintainers = [ maintainers.bzizou ];
23     platforms = platforms.unix ;
24   };