nixpkgs/pkgs/servers/http/apt-cacher-ng/default.nix

35 lines
791 B
Nix
Raw Normal View History

{ stdenv
, bzip2
, cmake
, doxygen
, fetchurl
, fuse
, lzma
, openssl
, pkgconfig
, systemd
, tcp_wrappers
, zlib
}:
2015-11-16 13:17:39 +00:00
stdenv.mkDerivation rec {
pname = "apt-cacher-ng";
version = "3.2";
2015-11-16 13:17:39 +00:00
src = fetchurl {
url = "http://ftp.debian.org/debian/pool/main/a/apt-cacher-ng/apt-cacher-ng_${version}.orig.tar.xz";
sha256 = "1kas5xq44rx33pczhrz05dsdhjaavxdmcs5h1ygfi76bpqvyhpa0";
2015-11-16 13:17:39 +00:00
};
nativeBuildInputs = [ cmake doxygen pkgconfig ];
buildInputs = [ bzip2 fuse lzma openssl systemd tcp_wrappers zlib ];
2015-11-16 13:17:39 +00:00
meta = with stdenv.lib; {
2015-11-16 13:17:39 +00:00
description = "A caching proxy specialized for linux distribution files";
homepage = "https://www.unix-ag.uni-kl.de/~bloch/acng/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = [ maintainers.makefu ];
2015-11-16 13:17:39 +00:00
};
}