summary refs log tree commit diff
path: root/pkgs/tools/networking/getmail/default.nix
blob: 80d29835da53d7228051386b6217c2d3c59a2f9e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, buildPythonPackage }:

buildPythonPackage rec {
  name = "getmail-4.43.0";
  namePrefix = "";

  src = fetchurl {
    url = "http://pyropus.ca/software/getmail/old-versions/${name}.tar.gz";
    sha256 = "0abcj4d2jp9y56c85kq7265d8wcij91w9lpzib9q6j9lcs4la8hy";
  };

  doCheck = false;

  installCommand = "python setup.py install --prefix=\"\$prefix\"";
  
  meta = {
    description = "A program for retrieving mail";
    maintainers = [ stdenv.lib.maintainers.raskin stdenv.lib.maintainers.iElectric ];
    platforms = stdenv.lib.platforms.linux;
  };
}