nixpkgs/pkgs/tools/networking/getmail/default.nix

25 lines
639 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonApplication }:
buildPythonApplication rec {
2016-02-14 13:44:52 +00:00
version = "4.49.0";
2014-09-02 08:58:32 +00:00
name = "getmail-${version}";
namePrefix = "";
src = fetchurl {
url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz";
2016-02-14 13:44:52 +00:00
sha256 = "1m0yzxd05fklwbmjj1n2q4sx397c1j5qi9a0r5fv3h8pplz4lv0w";
};
doCheck = false;
meta = {
description = "A program for retrieving mail";
2013-08-25 08:55:15 +00:00
maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.iElectric ];
platforms = stdenv.lib.platforms.linux;
2014-09-02 08:58:32 +00:00
homepage = "http://pyropus.ca/software/getmail/";
inherit version;
updateWalker = true;
};
}