about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-04-26 15:58:49 +0800
committerBobby Rong <rjl931189261@126.com>2022-04-26 15:58:49 +0800
commitc154c1cd79882a70491110a2740af2a3b74b93d6 (patch)
treefc32b0f49d6da585ff4015f24abf3349e4d64c26
parent258637b9699e4316345f812050d6d64ef52051b1 (diff)
kompose: use testers.testVersion
-rw-r--r--pkgs/applications/networking/cluster/kompose/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/cluster/kompose/default.nix b/pkgs/applications/networking/cluster/kompose/default.nix
index 517ab55d9d2d9..2b80dfc6815a3 100644
--- a/pkgs/applications/networking/cluster/kompose/default.nix
+++ b/pkgs/applications/networking/cluster/kompose/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testVersion, kompose }:
+{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kompose }:
 
 buildGoModule rec {
   pname = "kompose";
@@ -26,7 +26,7 @@ buildGoModule rec {
     done
   '';
 
-  passthru.tests.version = testVersion {
+  passthru.tests.version = testers.testVersion {
     package = kompose;
     command = "kompose version";
   };