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:
Jason "Don" O'Conal 2014-03-03 15:10:37 +11:00
parent 7bf77e413d
commit ff4ec6d5f0

View File

@ -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";
}