forked from mirrors/nixpkgs
bully: 1.0-22 -> 1.1
This commit is contained in:
parent
2542944a95
commit
0e4be9e5f0
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue