linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / getmail / default.nix
blob44481802cc083a53b8a19f767061a728472deac2
1 { lib, fetchurl, python2Packages }:
3 python2Packages.buildPythonApplication rec {
4   pname = "getmail";
5   version = "5.14";
7   src = fetchurl {
8     url = "http://pyropus.ca/software/getmail/old-versions/${pname}-${version}.tar.gz";
9     sha256 = "1hcrd9h4g12f5gvl1djsbchcjry02ghq4icdr897s8v48pkrzagk";
10   };
12   doCheck = false;
14   postPatch = ''
15     # getmail spends a lot of effort to build an absolute path for
16     # documentation installation; too bad it is counterproductive now
17     sed -e '/datadir or prefix,/d' -i setup.py
18   '';
20   meta = {
21     description = "A program for retrieving mail";
22     maintainers = [ lib.maintainers.raskin ];
23     platforms = lib.platforms.linux;
25     homepage = "http://pyropus.ca/software/getmail/";
26     inherit version;
27     updateWalker = true;
28     license = lib.licenses.gpl2Plus;
29   };