Merge pull request #88106 from zowoq/tests

podman packages: add passthru tests
This commit is contained in:
adisbladis
2020-05-19 03:14:43 +02:00
committed by GitHub
7 changed files with 44 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse3 }:
{ stdenv, fetchFromGitHub, autoreconfHook, pkg-config, fuse3, nixosTests }:
stdenv.mkDerivation rec {
pname = "fuse-overlayfs";
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
buildInputs = [ fuse3 ];
passthru.tests.podman = nixosTests.podman;
meta = with stdenv.lib; {
description = "FUSE implementation for overlayfs";
longDescription = "An implementation of overlay+shiftfs in FUSE for rootless containers.";

View File

@@ -6,6 +6,7 @@
, libcap
, libseccomp
, libslirp
, nixosTests
}:
stdenv.mkDerivation rec {
@@ -25,6 +26,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
passthru.tests.podman = nixosTests.podman;
meta = with stdenv.lib; {
homepage = "https://github.com/rootless-containers/slirp4netns";
description = "User-mode networking for unprivileged network namespaces";