bully: 1.0-22 -> 1.1

This commit is contained in:
Edward Tjörnhammar 2017-10-27 09:03:03 +02:00
parent 2542944a95
commit 0e4be9e5f0
No known key found for this signature in database
GPG Key ID: 7B82CE4A866B6845

View File

@ -1,13 +1,15 @@
{ stdenv, fetchFromGitHub, openssl, libpcap }: { stdenv, fetchFromGitHub, openssl, libpcap }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "bully-${version}"; name = "bully-${version}";
version = "1.0-22"; version = "1.1";
src = fetchFromGitHub { src = fetchFromGitHub {
sha256 = "0wk9jmcibd03gspnnr2qvfkw57rg94cwmi0kjpy1mgi05s6vlw1y"; sha256 = "1qvbbf72ryd85bp4v62fk93ag2sn25rj7kipgagbv22hnq8yl3zd";
rev = "v${version}"; rev = version;
repo = "bully"; repo = "bully";
owner = "HorayNarea"; owner = "aanarchyy";
}; };
buildInputs = [ openssl libpcap ]; buildInputs = [ openssl libpcap ];
@ -21,11 +23,11 @@ stdenv.mkDerivation rec {
mv bully $out/bin mv bully $out/bin
''; '';
meta = { meta = with stdenv.lib; {
description = "Retrieve WPA/WPA2 passphrase from a WPS enabled access point"; description = "Retrieve WPA/WPA2 passphrase from a WPS enabled access point";
homepage = https://github.com/Lrs121/bully; homepage = https://github.com/aanarchyy/bully;
maintainers = [ stdenv.lib.maintainers.edwtjo ]; maintainers = with maintainers; [ edwtjo ];
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }