mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #16358 from timbertson/tk
tk: propagate dependency on tcl & libXft
This commit is contained in:
commit
e558561c3e
1 changed files with 3 additions and 1 deletions
|
@ -17,9 +17,11 @@ stdenv.mkDerivation {
|
||||||
"--with-tcl=${tcl}/lib"
|
"--with-tcl=${tcl}/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [ pkgconfig tcl libXft ]
|
buildInputs = [ pkgconfig ]
|
||||||
++ stdenv.lib.optional stdenv.isDarwin fontconfig;
|
++ stdenv.lib.optional stdenv.isDarwin fontconfig;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ tcl libXft ];
|
||||||
|
|
||||||
NIX_CFLAGS_LINK = if stdenv.isDarwin then "-lfontconfig" else null;
|
NIX_CFLAGS_LINK = if stdenv.isDarwin then "-lfontconfig" else null;
|
||||||
|
|
||||||
inherit tcl;
|
inherit tcl;
|
||||||
|
|
Loading…
Reference in a new issue