summary refs log blame commit diff
path: root/pkgs/tools/networking/getmail/default.nix
blob: 8c9103790b9b773386c85db86c779c670744e642 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 
                        

                              



                                                                           
                                                                    

    
                  
 
          
                                                  
                                                                                     
                                           



                                                     
    
 
{ stdenv, fetchurl, buildPythonPackage }:

buildPythonPackage rec {
  version = "4.46.0";
  name = "getmail-${version}";
  namePrefix = "";

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

  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;
  };
}