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

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

9 lines
232 B
Nix
Raw Normal View History

2023-04-10 15:52:43 +00:00
{ mkDerivation, extra-cmake-modules, qtbase, ki18n, kcoreaddons }:
2016-04-21 16:01:22 +00:00
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "kdecoration";
nativeBuildInputs = [ extra-cmake-modules ];
2022-02-08 14:18:34 +00:00
buildInputs = [ qtbase ki18n kcoreaddons ];
2017-05-26 20:44:36 +00:00
outputs = [ "out" "dev" ];
2016-04-21 16:01:22 +00:00
}