1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

budgie-desktop: passthru nixosTests.budgie

This commit is contained in:
seth 2024-07-12 20:15:18 -04:00
parent f0f3d0dc56
commit 4bd01dd769
No known key found for this signature in database
GPG key ID: D31BD0D494BBEE86

View file

@ -28,6 +28,7 @@
meson,
ninja,
nix-update-script,
nixosTests,
pkg-config,
polkit,
sassc,
@ -108,7 +109,12 @@ stdenv.mkDerivation (finalAttrs: {
passthru = {
providedSessions = [ "budgie-desktop" ];
tests.pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; };
tests = {
inherit (nixosTests) budgie;
pkg-config = testers.hasPkgConfigModules { package = finalAttrs.finalPackage; };
};
updateScript = nix-update-script { };
};