mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
wmctrl: support cross-compilation
Add dependencies on correct place for cross-compiling. Fix issue where 'glib.h' cannot be found when cross-compiling.
This commit is contained in:
parent
1eb893a860
commit
65394f22e2
1 changed files with 3 additions and 1 deletions
|
@ -17,7 +17,9 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "1afclc57b9017a73mfs9w7lbdvdipmf9q0xdk116f61gnvyix2np";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
strictDeps = true;
|
||||
depsBuildBuild = [ pkg-config ];
|
||||
nativeBuildInputs = [ glib.dev ];
|
||||
buildInputs = [ libX11 libXmu glib ];
|
||||
|
||||
patches = [ ./64-bit-data.patch ];
|
||||
|
|
Loading…
Reference in a new issue