Skip to content

Commit

Permalink
bully: 1.0-22 -> 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edwtjo committed Oct 27, 2017
1 parent 2542944 commit 0e4be9e
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions pkgs/tools/networking/bully/default.nix
@@ -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 ];

Expand All @@ -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;
};
}

0 comments on commit 0e4be9e

Please sign in to comment.