summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonas Heinrich <onny@project-insanity.org>2023-01-11 10:37:52 +0100
committerGitHub <noreply@github.com>2023-01-11 10:37:52 +0100
commitce41be99da868d926fbe42146bc4cbc4dab5f4c0 (patch)
tree288557c074fdf8e500f1a7387d4bbf078a7815c8
parent2cab4c5d8b34d13676293f633907da7a756b2535 (diff)
parent175396e77d8889ad6848f6e85030129241d22f13 (diff)
Merge pull request #210168 from stasjok/marksman-fix-testversion
marksman: don't use deprecated alias
-rw-r--r--pkgs/development/tools/marksman/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/marksman/default.nix b/pkgs/development/tools/marksman/default.nix
index 4ed6c40e66fd..aa3b29275132 100644
--- a/pkgs/development/tools/marksman/default.nix
+++ b/pkgs/development/tools/marksman/default.nix
@@ -3,7 +3,7 @@
, buildDotnetModule
, dotnetCorePackages
, marksman
-, testVersion
+, testers
}:
buildDotnetModule rec {
@@ -34,7 +34,7 @@ buildDotnetModule rec {
passthru = {
updateScript = ./update.sh;
- tests.version = testVersion {
+ tests.version = testers.testVersion {
package = marksman;
command = "marksman --version";
};