Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

jsluice: init at unstable-2023-06-23

+32
+30
pkgs/tools/security/jsluice/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "jsluice"; 8 + version = "unstable-2023-06-23"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "BishopFox"; 12 + repo = "jsluice"; 13 + rev = "f10429e1016a9573da0157eacde8f7feb9deb8c7"; 14 + hash = "sha256-l9rwC1ljtt7Q+FYKdQFhtnLJDS8OwMJXIIpZgya0zwU="; 15 + }; 16 + 17 + vendorHash = "sha256-u4E+b/vChXArovtaZ4LODaINWit86i5K4GyHLR0JSyU="; 18 + 19 + ldflags = [ 20 + "-s" 21 + "-w" 22 + ]; 23 + 24 + meta = with lib; { 25 + description = "Tool for extracting URLs, paths, secrets, and other data from JavaScript source code"; 26 + homepage = "https://github.com/BishopFox/jsluice"; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ fab ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 9149 9149 9150 9150 jsduck = callPackage ../development/tools/jsduck { }; 9151 9151 9152 + jsluice = callPackage ../tools/security/jsluice { }; 9153 + 9152 9154 json-schema-for-humans = with python3Packages; toPythonApplication json-schema-for-humans; 9153 9155 9154 9156 jsonfmt = callPackage ../development/tools/misc/jsonfmt { };