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

Commits on May 6, 2020

  1. apt-cacher-ng: 3.2 → 3.5

    Fixes: CVE-2017-7443, CVE-2020-5202
    (cherry picked from commit 1c7ad58)
    mweinelt committed May 6, 2020
    Copy the full SHA
    3729fae View commit details

Commits on May 7, 2020

  1. Merge pull request #87122 from mweinelt/20.03/pr/apt-cacher-ng

    [20.03] apt-cacher-ng: 3.2 → 3.5
    ryantm authored May 7, 2020
    Copy the full SHA
    52e9f62 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/servers/http/apt-cacher-ng/default.nix
7 changes: 4 additions & 3 deletions pkgs/servers/http/apt-cacher-ng/default.nix
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@
, doxygen
, fetchurl
, fuse
, libevent
, lzma
, openssl
, pkgconfig
@@ -14,15 +15,15 @@

stdenv.mkDerivation rec {
pname = "apt-cacher-ng";
version = "3.2";
version = "3.5";

src = fetchurl {
url = "http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz";
sha256 = "1kas5xq44rx33pczhrz05dsdhjaavxdmcs5h1ygfi76bpqvyhpa0";
sha256 = "0h76n02nnpg7ir9247qrxb8p4d4p282nh13zrv5bb9sfm12pril2";
};

nativeBuildInputs = [ cmake doxygen pkgconfig ];
buildInputs = [ bzip2 fuse lzma openssl systemd tcp_wrappers zlib ];
buildInputs = [ bzip2 fuse libevent lzma openssl systemd tcp_wrappers zlib ];

meta = with stdenv.lib; {
description = "A caching proxy specialized for linux distribution files";