nixpkgs/pkgs/development/libraries/t1lib/default.nix
Jason "Don" O'Conal ff4ec6d5f0 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
2014-03-03 21:13:37 +11:00

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