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.

19 lines
253 B
Nix
Raw Normal View History

2023-01-20 15:40:22 +03:00
{ mkDerivation
, extra-cmake-modules
, flatpak
, kcmutils
, kconfig
, kdeclarative
}:
mkDerivation {
pname = "flatpak-kcm";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
flatpak
kcmutils
kconfig
kdeclarative
];
}