mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
mailman: update from 2.1.17 to 2.1.18
This commit is contained in:
parent
76a0ee1945
commit
e3639c03f2
2 changed files with 7 additions and 5 deletions
|
@ -1,14 +1,14 @@
|
|||
{ stdenv, fetchurl, python }:
|
||||
{ stdenv, fetchurl, python, dnspython }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mailman-2.1.17";
|
||||
name = "mailman-2.1.18";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/mailman/${name}.tgz";
|
||||
sha256 = "1rws4ghpq78ldp1si3z4pmiv1k4l8g6i6hjb2y4cwsjlxssahc64";
|
||||
sha256 = "0jc360crakvpz71msl0h11zv3849fqzlj9jfh1g7x3j4459n07fw";
|
||||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
buildInputs = [ python dnspython ];
|
||||
|
||||
patches = [ ./fix-var-prefix.patch ];
|
||||
|
||||
|
|
|
@ -7877,7 +7877,9 @@ let
|
|||
|
||||
lighttpd = callPackage ../servers/http/lighttpd { };
|
||||
|
||||
mailman = callPackage ../servers/mail/mailman { };
|
||||
mailman = callPackage ../servers/mail/mailman {
|
||||
dnspython = pythonPackages.dns;
|
||||
};
|
||||
|
||||
mediatomb = callPackage ../servers/mediatomb {
|
||||
spidermonkey = spidermonkey_185;
|
||||
|
|
Loading…
Reference in a new issue