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

36 lines
498 B
Nix
Raw Normal View History

2021-03-21 01:20:02 +00:00
{ mkDerivation
, lib
, extra-cmake-modules
, shared-mime-info
, libpthreadstubs
, libXcursor
, libXdmcp
, qtbase
, qtquickcontrols2
, qtx11extras
, karchive
, kcmutils
, kdeclarative
, ki18n
, kio
, knewstuff
2017-10-12 15:01:49 +00:00
}:
mkDerivation {
name = "sddm-kcm";
nativeBuildInputs = [ extra-cmake-modules shared-mime-info ];
2017-10-12 15:01:49 +00:00
buildInputs = [
2021-03-21 01:20:02 +00:00
libpthreadstubs
libXcursor
libXdmcp
qtquickcontrols2
qtx11extras
karchive
kcmutils
kdeclarative
ki18n
kio
knewstuff
2017-10-12 15:01:49 +00:00
];
}