mailman: remove unused derivation for mailman 2
This isn't referenced anywhere, so it's just dead code.
This commit is contained in:
parent
96d2790061
commit
89b311fa4d
@ -1,33 +0,0 @@
|
|||||||
{ stdenv, fetchurl, python2 }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
pname = "mailman";
|
|
||||||
version = "2.1.29";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://gnu/mailman/${pname}-${version}.tgz";
|
|
||||||
sha256 = "0b0dpwf6ap260791c7lg2vpw30llf19hymbf2hja3s016rqp5243";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ python2 python2.pkgs.dnspython ];
|
|
||||||
|
|
||||||
patches = [ ./fix-var-prefix.patch ];
|
|
||||||
|
|
||||||
configureFlags = [
|
|
||||||
"--without-permcheck"
|
|
||||||
"--with-cgi-ext=.cgi"
|
|
||||||
"--with-var-prefix=/var/lib/mailman"
|
|
||||||
];
|
|
||||||
|
|
||||||
installTargets = "doinstall"; # Leave out the 'update' target that's implied by 'install'.
|
|
||||||
|
|
||||||
makeFlags = [ "DIRSETGID=:" ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://www.gnu.org/software/mailman/;
|
|
||||||
description = "Free software for managing electronic mail discussion and e-newsletter lists";
|
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
maintainers = [ stdenv.lib.maintainers.peti ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user