summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-04-21 18:04:01 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-04-21 18:04:01 +0200
commitde048123a1cc5269d8b40a43d8a4e057b16e70ba (patch)
tree10a6cf6e86c4208cc3485d6ca51613bde62d4810 /pkgs/tools
parent0425d81848bbe12415f001a1d9915532e99fc899 (diff)
downloadnixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar.gz
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar.bz2
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar.lz
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar.xz
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.tar.zst
nixpkgs-de048123a1cc5269d8b40a43d8a4e057b16e70ba.zip
badtouch: init at 0.7.3
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/badtouch/default.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/tools/security/badtouch/default.nix b/pkgs/tools/security/badtouch/default.nix
new file mode 100644
index 00000000000..ea74bbb4fc3
--- /dev/null
+++ b/pkgs/tools/security/badtouch/default.nix
@@ -0,0 +1,50 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, installShellFiles
+, libcap
+, openssl
+, pkg-config
+, rustPlatform
+, Security
+, zlib
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "badtouch";
+  version = "0.7.3";
+
+  src = fetchFromGitHub {
+    owner = "kpcyrd";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "05dzwx9y8zh0y9zd4mibp02255qphc6iqy916fkm3ahaw0rg84h3";
+  };
+
+  cargoSha256 = "0mmglgz037dk3g7qagf1dyss5hvvsdy0m5m1h6c3rk5bp5kjzg87";
+
+  nativeBuildInputs = [
+    installShellFiles
+    pkg-config
+  ];
+
+  buildInputs = [
+    libcap
+    zlib
+    openssl
+  ] ++ lib.optional stdenv.isDarwin Security;
+
+  postInstall = ''
+    installManPage docs/${pname}.1
+  '';
+
+  # Tests requires access to httpin.org
+  doCheck = false;
+
+  meta = with lib; {
+    description = "Scriptable network authentication cracker";
+    homepage = "https://github.com/kpcyrd/badtouch";
+    license = with licenses; [ gpl3Only ];
+    maintainers = with maintainers; [ fab ];
+  };
+}