From 580f162fffb981b2ff2b7ff722f2d752d8cb0179 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Thu, 14 May 2020 09:48:53 +1000 Subject: [PATCH] skopeo: add passthru.tests for docker-tools --- pkgs/development/tools/skopeo/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix index 944df5c13d2c..a07d5aafba3f 100644 --- a/pkgs/development/tools/skopeo/default.nix +++ b/pkgs/development/tools/skopeo/default.nix @@ -10,6 +10,7 @@ , installShellFiles , makeWrapper , fuse-overlayfs +, nixosTests }: buildGoModule rec { @@ -48,6 +49,8 @@ buildGoModule rec { --prefix PATH : ${stdenv.lib.makeBinPath [ fuse-overlayfs ]} ''; + passthru.tests.docker-tools = nixosTests.docker-tools; + meta = with stdenv.lib; { description = "A command line utility for various operations on container images and image repositories"; homepage = "https://github.com/containers/skopeo";