depot/pkgs/applications/science/biology/meme-suite/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

21 lines
578 B
Nix

{ lib, stdenv, fetchurl, python3, perl, 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;
};
}