25 lines
631 B
Nix
25 lines
631 B
Nix
{ stdenv, fetchurl, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "4.49.0";
|
|
name = "getmail-${version}";
|
|
namePrefix = "";
|
|
|
|
src = fetchurl {
|
|
url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz";
|
|
sha256 = "1m0yzxd05fklwbmjj1n2q4sx397c1j5qi9a0r5fv3h8pplz4lv0w";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "A program for retrieving mail";
|
|
maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.iElectric ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
homepage = "http://pyropus.ca/software/getmail/";
|
|
inherit version;
|
|
updateWalker = true;
|
|
};
|
|
}
|