2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-27 15:23:26 +00:00
nixpkgs/pkgs/desktops/plasma-5/oxygen.nix

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

45 lines
631 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 16:01:22 +00:00
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "oxygen";
2017-05-16 15:56:41 +00:00
nativeBuildInputs = [ extra-cmake-modules ];
propagatedBuildInputs = [
frameworkintegration
kcmutils
kcompletion
kconfig
kdecoration
kguiaddons
ki18n
kservice
kwayland
kwidgetsaddons
kwindowsystem
qtdeclarative
qtx11extras
libXdmcp
2017-05-16 15:56:41 +00:00
];
outputs = [
"bin"
"dev"
"out"
];
2016-04-21 16:01:22 +00:00
}