mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
80da54afc1
Without the change parallel build fails as: cowpatty> clang -pipe -Wall -DOPENSSL -O2 -g3 -ggdb genpmk.c -o genpmk utils.o sha1.o -lpcap -lcrypto cowpatty> clang-11clang-11: : errorerror: no such file or directory: 'utils.o' cowpatty> : no such file or directory: 'utils.o'
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, clang
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
, installShellFiles
|
|
, openssl
|
|
, libpcap
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cowpatty";
|
|
version = "4.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "joswr1ght";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0fvwwghhd7wsx0lw2dj9rdsjnirawnq3c6silzvhi0yfnzn5fs0s";
|
|
};
|
|
|
|
patches = [
|
|
# Pull upstream fix for parallel builds:
|
|
# https://github.com/joswr1ght/cowpatty/pull/5
|
|
(fetchpatch {
|
|
name = "fix-parallel.patch";
|
|
url = "https://github.com/joswr1ght/cowpatty/commit/9c8cc09c4fa90aebee44afcd0ad6a35539178478.patch";
|
|
hash = "sha256-k0Qht80HcjvPoxVPF6wAXwxN3d2mxBrEyeFGuU7w9eA=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
clang
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
libpcap
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
"DESTDIR=$(out)"
|
|
"BINDIR=/bin"
|
|
];
|
|
|
|
postInstall = ''
|
|
installManPage cowpatty.1
|
|
installManPage genpmk.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Offline dictionary attack against WPA/WPA2 networks";
|
|
homepage = "https://github.com/joswr1ght/cowpatty";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nico202 fab ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|