flatpak-kcm: init at 5.27.0

This commit is contained in:
K900 2023-01-20 15:40:22 +03:00
parent 9bd88aa6ec
commit 984315e6e1
2 changed files with 19 additions and 0 deletions

View file

@ -123,6 +123,7 @@ let
breeze-grub = callPackage ./breeze-grub.nix { };
breeze-plymouth = callPackage ./breeze-plymouth { };
discover = callPackage ./discover.nix { };
flatpak-kcm = callPackage ./flatpak-kcm.nix { };
kactivitymanagerd = callPackage ./kactivitymanagerd.nix { };
kde-cli-tools = callPackage ./kde-cli-tools.nix { };
kde-gtk-config = callPackage ./kde-gtk-config { inherit gsettings-desktop-schemas; };

View file

@ -0,0 +1,18 @@
{ mkDerivation
, extra-cmake-modules
, flatpak
, kcmutils
, kconfig
, kdeclarative
}:
mkDerivation {
pname = "flatpak-kcm";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
flatpak
kcmutils
kconfig
kdeclarative
];
}