Merge branch 'master' into staging

This commit is contained in:
Vladimír Čunát
2016-11-26 11:27:09 +01:00
173 changed files with 6340 additions and 4415 deletions
+26
View File
@@ -0,0 +1,26 @@
{ stdenv, fetchurl, openssl, libpcap
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "cowpatty-${version}";
version = "4.6";
buildInputs = [ openssl libpcap ];
src = fetchurl {
url = "http://www.willhackforsushi.com/code/cowpatty/${version}/${name}.tgz";
sha256 = "1hivh3bq2maxvqzwfw06fr7h8bbpvxzah6mpibh3wb85wl9w2gyd";
};
installPhase = "make DESTDIR=$out BINDIR=/bin install";
meta = {
description = "Offline dictionary attack against WPA/WPA2 networks";
license = licenses.gpl2;
homepage = http://www.willhackforsushi.com/?page_id=50;
maintainers = with maintainers; [ nico202 ];
platforms = platforms.linux;
};
}
+3 -2
View File
@@ -2,11 +2,12 @@
, libfprint, glib, dbus_glib, polkit, nss, pam, systemd }:
stdenv.mkDerivation rec {
name = "fprintd-0.6.0";
name = "fprintd-${version}";
version = "0.7.0";
src = fetchurl {
url = "http://people.freedesktop.org/~hadess/${name}.tar.xz";
sha256 = "1by6nvlrqkwzcz2v2kyq6avi3h384vmlr42vj9s2yzcinkp64m1z";
sha256 = "05915i0bv7q62fqrs5diqwr8dz3pwqa1c1ivcgggkjyw0xk4ldp5";
};
buildInputs = [ libfprint glib dbus_glib polkit nss pam systemd ];