pixiewps: init at 1.2.2

This commit is contained in:
= 2016-10-25 21:20:33 +02:00 committed by Tuomas Tynkkynen
parent 6c2324311e
commit 5245e4f1c2
2 changed files with 28 additions and 0 deletions

View 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;
};
}

View File

@ -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 { };