Merge pull request #132292 from JJJollyjim/passthru-squashfs

squashfsTools: add NixOS cdrom boot as passthru test
This commit is contained in:
Robert Hensing 2021-08-01 12:37:00 +02:00 committed by GitHub
commit ab5b6828af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,6 +7,7 @@
, lz4
, lzo
, zstd
, nixosTests
}:
stdenv.mkDerivation rec {
@ -47,6 +48,10 @@ stdenv.mkDerivation rec {
"LZO_SUPPORT=1"
];
passthru.tests = {
nixos-iso-boots-and-verifies = nixosTests.boot.biosCdrom;
};
meta = with lib; {
homepage = "https://github.com/plougher/squashfs-tools";
description = "Tool for creating and unpacking squashfs filesystems";