flatpak-builder: add test to passthru

This commit is contained in:
worldofpeace 2019-11-07 08:39:09 -05:00
parent 1891b0030d
commit 40910462a8

View file

@ -1,6 +1,7 @@
{ stdenv
, fetchurl
, substituteAll
, nixosTests
, autoreconfHook
, docbook_xml_dtd_412
@ -131,7 +132,16 @@ in stdenv.mkDerivation rec {
'';
passthru = {
installedTestsDependencies = [ gnupg ostree python2 gnumake ];
installedTestsDependencies = [
gnupg
ostree
python2
gnumake
];
tests = {
installedTests = nixosTests.installed-tests.flatpak-builder;
};
};
meta = with stdenv.lib; {