bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
25 lines
761 B
Nix
25 lines
761 B
Nix
{ fetchurl, stdenv, perl, lib, openldap, pam, db, cyrus_sasl, libcap,
|
|
expat, libxml2, libtool, openssl}:
|
|
stdenv.mkDerivation rec {
|
|
name = "squid-3.5.19";
|
|
src = fetchurl {
|
|
url = "http://www.squid-cache.org/Versions/v3/3.5/${name}.tar.bz2";
|
|
sha256 = "1iy2r7r12xv0q9414rczbqbbggyyxgdmg21bynpygwkgalaz1dxx";
|
|
};
|
|
buildInputs = [perl openldap pam db cyrus_sasl libcap expat libxml2
|
|
libtool openssl];
|
|
configureFlags = [
|
|
"--enable-ipv6"
|
|
"--disable-strict-error-checking"
|
|
"--disable-arch-native"
|
|
"--with-openssl"
|
|
"--enable-ssl-crtd"
|
|
];
|
|
|
|
meta = {
|
|
description = "A caching proxy for the Web supporting HTTP, HTTPS, FTP, and more";
|
|
homepage = "http://www.squid-cache.org";
|
|
license = stdenv.lib.licenses.gpl2;
|
|
};
|
|
}
|