meme-suite: init at 5.1.1 (#118603)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
wip/yesman
Gregory Schwartz 3 years ago committed by GitHub
parent 560cc2af81
commit 9bf867612d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      maintainers/maintainer-list.nix
  2. 21
      pkgs/applications/science/biology/meme-suite/default.nix
  3. 2
      pkgs/top-level/all-packages.nix

@ -3689,6 +3689,12 @@
githubId = 343415;
name = "Greg Roodt";
};
gschwartz = {
email = "gsch@pennmedicine.upenn.edu";
github = "GregorySchwartz";
githubId = 2490088;
name = "Gregory Schwartz";
};
gtrunsec = {
email = "gtrunsec@hardenedlinux.org";
github = "GTrunSec";

@ -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-suite = callPackage ../applications/science/biology/meme-suite { };
# Needs qtwebkit which is broken on qt5.15
mendeley = libsForQt514.callPackage ../applications/office/mendeley {
gconf = pkgs.gnome2.GConf;

Loading…
Cancel
Save