nixpkgs/pkgs/desktops/plasma-5/flatpak-kcm.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
283 B
Nix
Raw Normal View History

2023-01-20 13:40:22 +01:00
{ mkDerivation
, extra-cmake-modules
, flatpak
, kcmutils
, kconfig
, kdeclarative
2023-06-20 18:29:21 +02:00
, kitemmodels
2023-01-20 13:40:22 +01:00
}:
mkDerivation {
pname = "flatpak-kcm";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
flatpak
kcmutils
kconfig
kdeclarative
2023-06-20 18:29:21 +02:00
kitemmodels
2023-01-20 13:40:22 +01:00
];
}