Skip to content

Commit 9426833

Browse files
authored
responder: migrate to finalAttrs
1 parent 556d1a0 commit 9426833

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkgs/by-name/re/responder/package.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
python3,
66
}:
77

8-
python3.pkgs.buildPythonApplication rec {
8+
python3.pkgs.buildPythonApplication (finalAttrs: {
99
pname = "responder";
1010
version = "3.2.0.0";
1111
format = "other";
1212

1313
src = fetchFromGitHub {
1414
owner = "lgandx";
1515
repo = "Responder";
16-
tag = "v${version}";
16+
tag = "v${finalAttrs.version}";
1717
hash = "sha256-2E1V5rnIvshSYV7F1iMr/1yGdSGQRCUdEwsTzJvVhaw=";
1818
};
1919

@@ -55,4 +55,4 @@ python3.pkgs.buildPythonApplication rec {
5555
maintainers = with lib.maintainers; [ fab ];
5656
mainProgram = "responder";
5757
};
58-
}
58+
})

0 commit comments

Comments
 (0)