summary refs log tree commit diff
path: root/pkgs/applications/science/biology/meme-suite/default.nix
blob: bfa561437e74595ff39e00b80d1e28a1c1ee9533 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, stdenv, fetchurl, python3, perl, glibc, zlib }:

stdenv.mkDerivation rec {
  pname = "meme-suite";
  version = "5.1.1";

  src = fetchurl {
    url = "https://meme-suite.org/meme-software/${version}/meme-${version}.tar.gz";
    sha256 = "38d73d256d431ad4eb7da2c817ce56ff2b4e26c39387ff0d6ada088938b38eb5";
  };

  buildInputs = [ zlib ];
  nativeBuildInputs = [ perl python3 ];

  meta = with lib; {
    description = "Motif-based sequence analysis tools";
    license = licenses.unfree;
    maintainers = with maintainers; [ gschwartz ];
    platforms = platforms.linux;
  };
}