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 774cc9c commit 8dde002Copy full SHA for 8dde002
2 files changed
pkgs/applications/virtualization/cri-o/default.nix
@@ -10,6 +10,7 @@
10
, libselinux
11
, lvm2
12
, pkg-config
13
+, nixosTests
14
}:
15
16
buildGoModule rec {
@@ -57,6 +58,8 @@ buildGoModule rec {
57
58
installManPage docs/*.[1-9]
59
'';
60
61
+ passthru.tests = { inherit (nixosTests) cri-o; };
62
+
63
meta = with stdenv.lib; {
64
homepage = "https://cri-o.io";
65
description = ''
pkgs/applications/virtualization/cri-o/wrapper.nix
@@ -27,7 +27,7 @@ let
27
28
in runCommand cri-o.name {
29
name = "${cri-o.pname}-wrapper-${cri-o.version}";
30
- inherit (cri-o) pname version;
+ inherit (cri-o) pname version passthru;
31
32
meta = builtins.removeAttrs cri-o.meta [ "outputsToInstall" ];
33
0 commit comments