2012-02-21 23:35:35 +00:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage }:
|
2010-10-17 20:30:59 +01:00
|
|
|
|
2011-03-28 14:13:15 +01:00
|
|
|
buildPythonPackage rec {
|
2013-08-25 09:55:15 +01:00
|
|
|
name = "getmail-4.42.0";
|
2011-03-28 14:13:15 +01:00
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz";
|
2013-08-25 09:55:15 +01:00
|
|
|
sha256 = "0n6sxp8vwa19ffr7bagzwp0hvxfjiy43xpz9sa1qmsyjs7c3xdqj";
|
2010-10-17 20:30:59 +01:00
|
|
|
};
|
|
|
|
|
2011-03-28 14:13:15 +01:00
|
|
|
doCheck = false;
|
2010-10-17 20:30:59 +01:00
|
|
|
|
2011-03-28 14:13:15 +01:00
|
|
|
installCommand = "python setup.py install --prefix=\"\$prefix\"";
|
|
|
|
|
2010-10-17 20:30:59 +01:00
|
|
|
meta = {
|
2011-03-28 14:13:15 +01:00
|
|
|
description = "A program for retrieving mail";
|
2013-08-25 09:55:15 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.iElectric ];
|
2011-03-28 14:13:15 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-10-17 20:30:59 +01:00
|
|
|
};
|
2011-03-28 14:13:15 +01:00
|
|
|
}
|