1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

fuse-overlayfs: add passthru.tests

This commit is contained in:
zowoq 2020-05-19 10:41:00 +10:00
parent 032462fc94
commit c3eef07b21

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.";