Merge master into closure-size
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
This commit is contained in:
@@ -1,15 +1,16 @@
|
||||
{ stdenv, fetchurl, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl
|
||||
, libmilter }:
|
||||
, libmilter, pcre, freshclamConf ? null }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "clamav-${version}";
|
||||
version = "0.98.7";
|
||||
version = "0.99";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/clamav/clamav-${version}.tar.gz";
|
||||
sha256 = "0wp2ad8km4cqmlndni5ljv7q3lfxm6y4r3giv0yf23bl0yvif918";
|
||||
sha256 = "1abyg349yr31z764jcgx67q5v098jrkrj88bqkzmys6xza62qyfj";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter ];
|
||||
buildInputs = [ zlib bzip2 libxml2 openssl ncurses curl libiconv libmilter pcre ];
|
||||
|
||||
configureFlags = [
|
||||
"--with-zlib=${zlib}"
|
||||
@@ -19,10 +20,13 @@ stdenv.mkDerivation rec {
|
||||
"--with-openssl=${openssl}"
|
||||
"--with-libncurses-prefix=${ncurses}"
|
||||
"--with-libcurl=${curl}"
|
||||
"--with-pcre=${pcre}"
|
||||
"--enable-milter"
|
||||
"--disable-clamav"
|
||||
];
|
||||
|
||||
fixupPhase = if (freshclamConf != null) then ''echo "${freshclamConf}" > $out/etc/freshclam.conf'' else "";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.clamav.net;
|
||||
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
let version = "0.9.3"; in
|
||||
|
||||
pythonPackages.buildPythonPackage {
|
||||
pythonPackages.buildPythonApplication {
|
||||
name = "fail2ban-${version}";
|
||||
namePrefix = "";
|
||||
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
, glib , gnome3, gtk3, libgnome_keyring, vala, wrapGAppsHook, xorg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.8.15";
|
||||
version = "1.8.16";
|
||||
name = "gnome-encfs-manager-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://launchpad.net/gencfsm/trunk/1.8/+download/gnome-encfs-manager_${version}.tar.gz";
|
||||
sha256 = "1iryli6fgw6a45abkrjacfac7dwjhbrhw652rqf0s183373db0mx";
|
||||
sha256 = "06sz6zcmvxkqww5gx4brcqs4hlpy9d8sal9nmw0pdsvh8k5vmpgn";
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake intltool libtool pkgconfig vala glib encfs
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchFromGitHub, buildPythonPackage, python, pycrypto, hping }:
|
||||
{ stdenv, fetchFromGitHub, buildPythonApplication, python, pycrypto, hping }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
rev = "bf14bbff";
|
||||
name = "knockknock-r${rev}";
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
wrapProgram $out/bin/kpcli --set PERL5LIB \
|
||||
"${with perlPackages; stdenv.lib.makePerlPath [
|
||||
Clone CryptRijndael SortNaturally TermReadKey TermShellUI FileKeePass TermReadLineGnu XMLParser
|
||||
CaptureTiny Clipboard Clone CryptRijndael SortNaturally TermReadKey TermShellUI FileKeePass TermReadLineGnu XMLParser
|
||||
]}"
|
||||
'';
|
||||
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
{ stdenv, fetchurl, gnused, perl, libgcrypt, zlib, bzip2 }:
|
||||
{ stdenv, fetchFromGitHub, gnused, perl, libgcrypt, zlib, bzip2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "munge-0.5.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://munge.googlecode.com/files/${name}.tar.bz2";
|
||||
sha256 = "19aijdrjij2g0xpqgl198jh131j94p4gvam047gsdc0wz0a5c1wf";
|
||||
src = fetchFromGitHub {
|
||||
owner = "dun";
|
||||
repo = "munge";
|
||||
rev = "${name}";
|
||||
sha256 = "02847p742nq3cb8ayf5blrdicybq72nfsnggqkxr33cpppmsfwg9";
|
||||
};
|
||||
|
||||
buildInputs = [ gnused perl libgcrypt zlib bzip2 ];
|
||||
@@ -20,11 +22,10 @@ stdenv.mkDerivation rec {
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://code.google.com/p/munge/;
|
||||
description = ''
|
||||
An authentication service for creating and validating credentials
|
||||
'';
|
||||
maintainers = [ stdenv.lib.maintainers.rickynils ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
buildInputs = [ pam ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utility program to test the PAM facility.";
|
||||
description = "Utility program to test the PAM facility";
|
||||
homepage = http://pamtester.sourceforge.net/;
|
||||
license = licenses.bsd3;
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -10,11 +10,11 @@ let
|
||||
in
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pinentry-0.9.6";
|
||||
name = "pinentry-0.9.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
|
||||
sha256 = "0rhyw1vk28kgasjp22myf7m2q8kycw82d65pr9kgh93z17lj849a";
|
||||
sha256 = "1cp7wjqr6nx31mdclr61s2h84ijqjl0ph99kgj4vyawpjj1j1633";
|
||||
};
|
||||
|
||||
buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ];
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ stdenv, pythonPackages, fetchurl, makeWrapper, pandoc
|
||||
, coreutils, iptables, nettools, openssh, procps }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
name = "sshuttle-${version}";
|
||||
version = "0.76";
|
||||
|
||||
|
||||
@@ -16,13 +16,13 @@ let
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "tor-browser-${version}";
|
||||
version = "5.5";
|
||||
version = "5.5.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz";
|
||||
sha256 = if stdenv.is64bit then
|
||||
"0glv2zffls1as71idbfg3l34kmsv48f3sk59swl6k8l75nvxlzjk" else
|
||||
"0xbsixxs1hj0ydmazgi796xgvlsvbrkh8vfgaiyqcvgx4vf4ggwf";
|
||||
"1zb5fssy9c37cb0ab083f2jifw47wnck32nc6zpijmqm059yccxc" else
|
||||
"1gjc6prx3n769nj4gzhfjrb2qpw3ypvsb3pp0a130db1ssgnzqqr";
|
||||
};
|
||||
|
||||
desktopItem = makeDesktopItem {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
|
||||
{ stdenv, fetchurl, buildPythonApplication, pycrypto }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
buildPythonApplication rec {
|
||||
namePrefix = "";
|
||||
name = "volatility-2.4";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user