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
{
2
mkDerivation, lib, copyPathsToStore,
3
extra-cmake-modules,
0
4
qtbase, qttools, qtx11extras
5
}:
6
···
11
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
12
};
13
nativeBuildInputs = [ extra-cmake-modules ];
14
-
buildInputs = [ qttools qtx11extras ];
15
propagatedBuildInputs = [ qtbase ];
16
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
17
preConfigure = ''
···
1
{
2
mkDerivation, lib, copyPathsToStore,
3
extra-cmake-modules,
4
+
libpthreadstubs, libXdmcp,
5
qtbase, qttools, qtx11extras
6
}:
7
···
12
broken = builtins.compareVersions qtbase.version "5.7.0" < 0;
13
};
14
nativeBuildInputs = [ extra-cmake-modules ];
15
+
buildInputs = [ libpthreadstubs libXdmcp qttools qtx11extras ];
16
propagatedBuildInputs = [ qtbase ];
17
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
18
preConfigure = ''