about summary refs log tree commit diff
path: root/pkgs/by-name/sc/scout
diff options
context:
space:
mode:
authorMatthias Thym <git@thym.at>2024-01-12 11:40:10 +0100
committerMatthias Thym <git@thym.at>2024-01-12 11:40:10 +0100
commit13aedacb58306935326c532502ca7423496e0317 (patch)
tree4c220385d7f9f035aaae1fae7a393301ee507e29 /pkgs/by-name/sc/scout
parentb90dc31ced990a622817842d06165693a4f235d2 (diff)
scout: init at 0.15.1
Diffstat (limited to 'pkgs/by-name/sc/scout')
-rw-r--r--pkgs/by-name/sc/scout/package.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/sc/scout/package.nix b/pkgs/by-name/sc/scout/package.nix
new file mode 100644
index 0000000000000..30f3a9fce3c40
--- /dev/null
+++ b/pkgs/by-name/sc/scout/package.nix
@@ -0,0 +1,26 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "scout";
+  version = "0.15.1";
+
+  src = fetchFromGitHub {
+    owner = "liamg";
+    repo = pname;
+    rev = "v${version}";
+    hash = "sha256-9SimePyBUXXfT4+ZtciQMaoyXpyKi9D3LTwud8QMJ6w=";
+  };
+
+  vendorHash = "sha256-reoE3WNgulREwxoeGFEN1QONZ2q1LHmQF7+iGx0SGTY=";
+
+  meta = with lib; {
+    description = "Lightweight URL fuzzer and spider: Discover a web server's undisclosed files, directories and VHOSTs";
+    homepage = "https://github.com/liamg/scout";
+    platforms = platforms.unix;
+    license = licenses.unlicense;
+    maintainers = with maintainers; [ totoroot ];
+  };
+}