about summary refs log tree commit diff
path: root/pkgs/by-name/sc/scout/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/sc/scout/package.nix')
-rw-r--r--pkgs/by-name/sc/scout/package.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/by-name/sc/scout/package.nix b/pkgs/by-name/sc/scout/package.nix
deleted file mode 100644
index 4c1a80ff109b..000000000000
--- a/pkgs/by-name/sc/scout/package.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ 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";
-    mainProgram = "scout";
-    homepage = "https://github.com/liamg/scout";
-    platforms = platforms.unix;
-    license = licenses.unlicense;
-    maintainers = with maintainers; [ totoroot ];
-  };
-}