Files

21 lines
500 B
Nix
Raw Permalink Normal View History

2017-02-28 07:49:25 -06:00
{
mkDerivation,
2017-02-28 07:49:25 -06:00
extra-cmake-modules,
libpthreadstubs, libXdmcp,
2017-02-28 07:49:25 -06:00
qtbase, qttools, qtx11extras
2016-04-21 10:32:21 -05:00
}:
mkDerivation {
2016-04-21 10:32:21 -05:00
name = "kwindowsystem";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ libpthreadstubs libXdmcp qttools qtx11extras ];
propagatedBuildInputs = [ qtbase ];
patches = [
./0001-platform-plugins-path.patch
];
preConfigure = ''
NIX_CFLAGS_COMPILE+=" -DNIXPKGS_QT_PLUGIN_PATH=\"''${!outputBin}/$qtPluginPrefix\""
'';
outputs = [ "out" "dev" ];
2016-04-21 10:32:21 -05:00
}