We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 556d1a0 commit 9426833Copy full SHA for 9426833
pkgs/by-name/re/responder/package.nix
@@ -5,15 +5,15 @@
5
python3,
6
}:
7
8
-python3.pkgs.buildPythonApplication rec {
+python3.pkgs.buildPythonApplication (finalAttrs: {
9
pname = "responder";
10
version = "3.2.0.0";
11
format = "other";
12
13
src = fetchFromGitHub {
14
owner = "lgandx";
15
repo = "Responder";
16
- tag = "v${version}";
+ tag = "v${finalAttrs.version}";
17
hash = "sha256-2E1V5rnIvshSYV7F1iMr/1yGdSGQRCUdEwsTzJvVhaw=";
18
};
19
@@ -55,4 +55,4 @@ python3.pkgs.buildPythonApplication rec {
55
maintainers = with lib.maintainers; [ fab ];
56
mainProgram = "responder";
57
58
-}
+})
0 commit comments