gcab: run & install tests

also add nixosTests.installed-tests.gcab for running the installed tests
This commit is contained in:
Jan Tojnar
2019-11-07 14:07:19 +01:00
parent c88e084ecb
commit e253d015a1
4 changed files with 42 additions and 2 deletions
+1
View File
@@ -67,6 +67,7 @@ in
flatpak = callInstalledTest ./flatpak.nix {};
flatpak-builder = callInstalledTest ./flatpak-builder.nix {};
fwupd = callInstalledTest ./fwupd.nix {};
gcab = callInstalledTest ./gcab.nix {};
gdk-pixbuf = callInstalledTest ./gdk-pixbuf.nix {};
gjs = callInstalledTest ./gjs.nix {};
glib-networking = callInstalledTest ./glib-networking.nix {};
+5
View File
@@ -0,0 +1,5 @@
{ pkgs, makeInstalledTest, ... }:
makeInstalledTest {
tested = pkgs.gcab;
}