meme-suite: init at 5.1.1 (#118603)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
560cc2af81
commit
9bf867612d
3 changed files with 29 additions and 0 deletions
|
@ -3689,6 +3689,12 @@
|
||||||
githubId = 343415;
|
githubId = 343415;
|
||||||
name = "Greg Roodt";
|
name = "Greg Roodt";
|
||||||
};
|
};
|
||||||
|
gschwartz = {
|
||||||
|
email = "gsch@pennmedicine.upenn.edu";
|
||||||
|
github = "GregorySchwartz";
|
||||||
|
githubId = 2490088;
|
||||||
|
name = "Gregory Schwartz";
|
||||||
|
};
|
||||||
gtrunsec = {
|
gtrunsec = {
|
||||||
email = "gtrunsec@hardenedlinux.org";
|
email = "gtrunsec@hardenedlinux.org";
|
||||||
github = "GTrunSec";
|
github = "GTrunSec";
|
||||||
|
|
21
pkgs/applications/science/biology/meme-suite/default.nix
Normal file
21
pkgs/applications/science/biology/meme-suite/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -24192,6 +24192,8 @@ in
|
||||||
|
|
||||||
meme = callPackage ../applications/graphics/meme { };
|
meme = callPackage ../applications/graphics/meme { };
|
||||||
|
|
||||||
|
meme-suite = callPackage ../applications/science/biology/meme-suite { };
|
||||||
|
|
||||||
# Needs qtwebkit which is broken on qt5.15
|
# Needs qtwebkit which is broken on qt5.15
|
||||||
mendeley = libsForQt514.callPackage ../applications/office/mendeley {
|
mendeley = libsForQt514.callPackage ../applications/office/mendeley {
|
||||||
gconf = pkgs.gnome2.GConf;
|
gconf = pkgs.gnome2.GConf;
|
||||||
|
|
Loading…
Reference in a new issue