summary refs log tree commit diff
path: root/pkgs/tools/networking/findomain
diff options
context:
space:
mode:
authorOleksii Filonenko <brightone@protonmail.com>2019-12-30 14:56:03 +0200
committerOleksii Filonenko <brightone@protonmail.com>2020-01-06 13:57:34 +0200
commit3e036c262bed220f055662e0e5079b42c4b1b87a (patch)
tree28874a7548c17db71f488cc32e4aa577d8775aea /pkgs/tools/networking/findomain
parent4c28daa093b6cbb5905e3de00a9eb732ad2b5a21 (diff)
downloadnixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar.gz
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar.bz2
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar.lz
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar.xz
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.tar.zst
nixpkgs-3e036c262bed220f055662e0e5079b42c4b1b87a.zip
findomain: init at 0.9.3
Diffstat (limited to 'pkgs/tools/networking/findomain')
-rw-r--r--pkgs/tools/networking/findomain/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/tools/networking/findomain/default.nix b/pkgs/tools/networking/findomain/default.nix
new file mode 100644
index 00000000000..abc34abd77f
--- /dev/null
+++ b/pkgs/tools/networking/findomain/default.nix
@@ -0,0 +1,37 @@
+{ stdenv
+, lib
+, fetchFromGitHub
+, rustPlatform
+, installShellFiles
+, perl
+, Security
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "findomain";
+  version = "0.9.3";
+
+  src = fetchFromGitHub {
+    owner = "Edu4rdSHL";
+    repo = pname;
+    rev = version;
+    sha256 = "1p7bj8q3zwn92nn6d71bk7cczclcsjvan6m8znlzr4lrwircp1y1";
+  };
+
+  cargoSha256 = "1grb0frc1kp3z6vs2906h9v1yx9qxn6x0gf9jy1msqgnqjw0bgn9";
+
+  nativeBuildInputs = [ installShellFiles perl ];
+  buildInputs = lib.optional stdenv.isDarwin Security;
+
+  postInstall = ''
+    installManPage ${pname}.1
+  '';
+
+  meta = with lib; {
+    description = "The fastest and cross-platform subdomain enumerator";
+    homepage = "https://github.com/Edu4rdSHL/findomain";
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ filalex77 ];
+    platforms = platforms.all;
+  };
+}