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: 722ac6969b95
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 32315f556e38
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 27, 2020

  1. fetchmail: 6.4.13 -> 6.4.14

    r-ryantm committed Nov 27, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    MylesBorins Myles Borins
    Copy the full SHA
    de2188f View commit details
  2. Merge pull request #105169 from r-ryantm/auto-update/fetchmail

    fetchmail: 6.4.13 -> 6.4.14
    SuperSandro2000 authored Nov 27, 2020
    Copy the full SHA
    32315f5 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/misc/fetchmail/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/misc/fetchmail/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{ stdenv, fetchurl, openssl }:

let
version = "6.4.13";
version = "6.4.14";
in
stdenv.mkDerivation {
pname = "fetchmail";
inherit version;

src = fetchurl {
url = "mirror://sourceforge/fetchmail/fetchmail-${version}.tar.xz";
sha256 = "1qablzgwx3a516vdhckx3pv716x9r7nyfyr6fbncif861c3cya3x";
sha256 = "1jxxb3qyrh7118fwqa3bhirjh97j2w8r71s8vcb6vp3w1wwhfis2";
};

buildInputs = [ openssl ];