mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
bully: 1.1 -> 1.4-00
New maintained upstream.
This commit is contained in:
parent
4cdd64d907
commit
772ce9d870
@ -1,33 +1,32 @@
|
|||||||
{ stdenv, fetchFromGitHub, openssl, libpcap }:
|
{ stdenv, fetchFromGitHub, libpcap }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
pname = "bully";
|
pname = "bully";
|
||||||
version = "1.1";
|
version = "1.4-00";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
sha256 = "1qvbbf72ryd85bp4v62fk93ag2sn25rj7kipgagbv22hnq8yl3zd";
|
owner = "kimocoder";
|
||||||
rev = version;
|
|
||||||
repo = "bully";
|
repo = "bully";
|
||||||
owner = "aanarchyy";
|
rev = version;
|
||||||
|
sha256 = "1n2754a5z44g414a0hj3cmi9q5lwnzyvmvzskrj2nci8c8m2kgnf";
|
||||||
};
|
};
|
||||||
buildInputs = [ openssl libpcap ];
|
|
||||||
|
|
||||||
buildPhase = ''
|
buildInputs = [ libpcap ];
|
||||||
cd src
|
|
||||||
make
|
enableParallelBuilding = true;
|
||||||
'';
|
|
||||||
|
sourceRoot = "./source/src";
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
install -Dm555 -t $out/bin bully
|
||||||
mv bully $out/bin
|
install -Dm444 -t $out/share/doc/${pname} ../*.md
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
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/aanarchyy/bully";
|
homepage = "https://github.com/kimocoder/bully";
|
||||||
maintainers = with maintainers; [ edwtjo ];
|
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ edwtjo ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -5934,9 +5934,7 @@ in
|
|||||||
|
|
||||||
brickd = callPackage ../servers/brickd { };
|
brickd = callPackage ../servers/brickd { };
|
||||||
|
|
||||||
bully = callPackage ../tools/networking/bully {
|
bully = callPackage ../tools/networking/bully { };
|
||||||
openssl = openssl_1_0_2;
|
|
||||||
};
|
|
||||||
|
|
||||||
pcapc = callPackage ../tools/networking/pcapc { };
|
pcapc = callPackage ../tools/networking/pcapc { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user