biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / biology / meme-suite / default.nix
blobc0f67c314161e7a5fd129b4803fdfacd9bb84202
1 { lib, stdenv, fetchurl, python3, perl, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "meme-suite";
5   version = "5.1.1";
7   src = fetchurl {
8     url = "https://meme-suite.org/meme-software/${version}/meme-${version}.tar.gz";
9     sha256 = "38d73d256d431ad4eb7da2c817ce56ff2b4e26c39387ff0d6ada088938b38eb5";
10   };
12   buildInputs = [ zlib ];
13   nativeBuildInputs = [ perl python3 ];
15   meta = with lib; {
16     description = "Motif-based sequence analysis tools";
17     license = licenses.unfree;
18     maintainers = with maintainers; [ gschwartz ];
19     platforms = platforms.linux;
20   };