flatpak-builder: add test to passthru
This commit is contained in:
parent
1891b0030d
commit
40910462a8
|
@ -1,6 +1,7 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchurl
|
, fetchurl
|
||||||
, substituteAll
|
, substituteAll
|
||||||
|
, nixosTests
|
||||||
|
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
, docbook_xml_dtd_412
|
, docbook_xml_dtd_412
|
||||||
|
@ -131,7 +132,16 @@ in stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
installedTestsDependencies = [ gnupg ostree python2 gnumake ];
|
installedTestsDependencies = [
|
||||||
|
gnupg
|
||||||
|
ostree
|
||||||
|
python2
|
||||||
|
gnumake
|
||||||
|
];
|
||||||
|
|
||||||
|
tests = {
|
||||||
|
installedTests = nixosTests.installed-tests.flatpak-builder;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in New Issue