nixpkgs/pkgs/desktops/plasma-5/oxygen.nix

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

40 lines
599 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, frameworkintegration
, kcmutils
, kcompletion
, kconfig
, kdecoration
, kguiaddons
, ki18n
, kwidgetsaddons
, kservice
, kwayland
, kwindowsystem
, qtdeclarative
, qtx11extras
, libXdmcp
2016-04-21 19:01:22 +03:00
}:
2017-05-16 18:56:41 +03:00
mkDerivation {
2022-03-07 00:28:56 +03:00
pname = "oxygen";
2017-05-16 18:56:41 +03:00
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
frameworkintegration
kcmutils
kcompletion
kconfig
kdecoration
kguiaddons
ki18n
kservice
kwayland
kwidgetsaddons
kwindowsystem
qtdeclarative
qtx11extras
libXdmcp
2017-05-16 18:56:41 +03:00
];
outputs = [ "bin" "dev" "out" ];
2016-04-21 19:01:22 +03:00
}