ff4ec6d5f0
* x11 = xlibsWrapper on non-Darwin systems, but is darwinX11AndOpenGL on Darwin systems, so pass in xlibsWrapper to the t1lib build instead
15 lines
348 B
Nix
15 lines
348 B
Nix
{stdenv, fetchurl, xlibsWrapper, libXaw, libXpm}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "t1lib-5.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.nluug.nl/pub/metalab/libs/graphics/t1lib-5.1.2.tar.gz";
|
|
sha256 = "0nbvjpnmcznib1nlgg8xckrmsw3haa154byds2h90y2g0nsjh4w2";
|
|
};
|
|
|
|
buildInputs = [xlibsWrapper libXaw libXpm];
|
|
buildFlags = "without_doc";
|
|
}
|
|
|