3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/kde-5/plasma-5.6/libkscreen.nix

19 lines
267 B
Nix
Raw Normal View History

2016-04-21 17:01:22 +01:00
{ plasmaPackage
, extra-cmake-modules
2016-04-21 20:36:56 +01:00
, kwayland, libXrandr
2016-04-21 17:01:22 +01:00
, qtx11extras
}:
plasmaPackage {
name = "libkscreen";
nativeBuildInputs = [
extra-cmake-modules
];
buildInputs = [
2016-04-21 20:36:56 +01:00
kwayland libXrandr
2016-04-21 17:01:22 +01:00
];
propagatedBuildInputs = [
qtx11extras
];
}