mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
t1lib: fix build on Darwin
* x11 = xlibsWrapper on non-Darwin systems, but is darwinX11AndOpenGL on Darwin systems, so pass in xlibsWrapper to the t1lib build instead
This commit is contained in:
parent
7bf77e413d
commit
ff4ec6d5f0
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl, x11, libXaw, libXpm}:
|
||||
{stdenv, fetchurl, xlibsWrapper, libXaw, libXpm}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "t1lib-5.1.2";
|
||||
|
@ -8,7 +8,7 @@ stdenv.mkDerivation {
|
|||
sha256 = "0nbvjpnmcznib1nlgg8xckrmsw3haa154byds2h90y2g0nsjh4w2";
|
||||
};
|
||||
|
||||
buildInputs = [x11 libXaw libXpm];
|
||||
buildInputs = [xlibsWrapper libXaw libXpm];
|
||||
buildFlags = "without_doc";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue