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