evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ap / apt-cacher-ng / package.nix
blobbea5fd3135ae1dcd0f49920d15fe6fc398e4f4a2
1 { lib
2 , stdenv
3 , bzip2
4 , cmake
5 , doxygen
6 , fetchurl
7 , fetchpatch
8 , fuse
9 , libevent
10 , xz
11 , openssl
12 , pkg-config
13 , systemd
14 , tcp_wrappers
15 , zlib
16 , c-ares
19 stdenv.mkDerivation rec {
20   pname = "apt-cacher-ng";
21   version = "3.7.4";
23   src = fetchurl {
24     url = "mirror://debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz";
25     sha256 = "0pwsj9rf6a6q7cnfbpcrfq2gjcy7sylqzqqr49g2zi39lrrh8533";
26   };
28   patches = [
29     # this patch fixes the build for glibc >= 2.38
30     (fetchpatch {
31       name = "strlcpy-glibc238.patch";
32       url = "https://bugs.debian.org/cgi-bin/bugreport.cgi?att=0;bug=1052360;msg=10";
33       hash = "sha256-uhQj+ZcHCV36Tm0pF/+JG59bSaRdTZCrMcKL3YhZTk8=";
34     })
35   ];
37   nativeBuildInputs = [ cmake doxygen pkg-config ];
38   buildInputs = [ bzip2 fuse libevent xz openssl systemd tcp_wrappers zlib c-ares ];
40   meta = with lib; {
41     description = "Caching proxy specialized for Linux distribution files";
42     mainProgram = "apt-cacher-ng";
43     homepage = "https://www.unix-ag.uni-kl.de/~bloch/acng/";
44     license = licenses.bsdOriginal;
45     platforms = platforms.linux;
46     maintainers = [ maintainers.makefu ];
47   };