tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
kwindowsystem: add missing dependencies
Peter Hoeg
8 years ago
6aeaadfb
c62686fb
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
kde-frameworks
kwindowsystem
default.nix
+2
-1
pkgs/development/libraries/kde-frameworks/kwindowsystem/default.nix
···
1
1
{
2
2
mkDerivation, lib, copyPathsToStore,
3
3
extra-cmake-modules,
4
4
+
libpthreadstubs, libXdmcp,
4
5
qtbase, qttools, qtx11extras
5
6
}:
6
7
···
11
12
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
12
13
};
13
14
nativeBuildInputs = [ extra-cmake-modules ];
14
14
-
buildInputs = [ qttools qtx11extras ];
15
15
+
buildInputs = [ libpthreadstubs libXdmcp qttools qtx11extras ];
15
16
propagatedBuildInputs = [ qtbase ];
16
17
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
17
18
preConfigure = ''