pixiewps: init at 1.2.2
This commit is contained in:
parent
6c2324311e
commit
5245e4f1c2
26
pkgs/tools/networking/pixiewps/default.nix
Normal file
26
pkgs/tools/networking/pixiewps/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pixiewps-${version}";
|
||||
version = "1.2.2";
|
||||
src = fetchFromGitHub {
|
||||
owner = "wiire";
|
||||
repo = "pixiewps";
|
||||
rev = "v${version}";
|
||||
sha256 = "09znnj7p8cks7zxzklkdm4zy2qnp92vhngm9r0zfgawnl2b4r2aw";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
cd src
|
||||
substituteInPlace Makefile --replace "\$(DESTDIR)/usr" "$out"
|
||||
substituteInPlace Makefile --replace "/local" ""
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "An offline WPS bruteforce utility";
|
||||
homepage = https://github.com/wiire/pixiewps;
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainer = stdenv.lib.maintainers.nico202;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -3225,6 +3225,8 @@ in
|
||||
|
||||
pius = callPackage ../tools/security/pius { };
|
||||
|
||||
pixiewps = callPackage ../tools/networking/pixiewps {};
|
||||
|
||||
pk2cmd = callPackage ../tools/misc/pk2cmd { };
|
||||
|
||||
plantuml = callPackage ../tools/misc/plantuml { };
|
||||
|
Loading…
Reference in New Issue
Block a user