Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ee8309dbe6ff
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed5be9fdff73
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 24, 2021

  1. getmail6: init at 6.14

    wahjava committed Jan 24, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    wahjava Ashish
    Copy the full SHA
    f66f47d View commit details

Commits on Jan 25, 2021

  1. Merge pull request #104054 from wahjava/getmail6

    getmail6: init at 6.9
    SuperSandro2000 authored Jan 25, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ed5be9f View commit details
Showing with 33 additions and 0 deletions.
  1. +31 −0 pkgs/tools/networking/getmail6/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
31 changes: 31 additions & 0 deletions pkgs/tools/networking/getmail6/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, python3Packages, lib }:

python3Packages.buildPythonApplication rec {
pname = "getmail6";
version = "6.14";

src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "1a3bw4wwdapd9n051dgwqldd8gwiipb5shaz08qwp1jndpvylm7d";
};

doCheck = false;

pythonImportsCheck = [ "getmailcore" ];

postPatch = ''
# getmail spends a lot of effort to build an absolute path for
# documentation installation; too bad it is counterproductive now
sed -e '/datadir or prefix,/d' -i setup.py
'';

meta = with lib; {
description = "A program for retrieving mail";
homepage = "https://getmail6.org";
updateWalker = true;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ abbe ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4345,6 +4345,8 @@ in

getmail = callPackage ../tools/networking/getmail { };

getmail6 = callPackage ../tools/networking/getmail6 { };

getopt = callPackage ../tools/misc/getopt { };

gexiv2 = callPackage ../development/libraries/gexiv2 { };