summary refs log tree commit diff
path: root/pkgs/development/libraries/t1lib/default.nix
blob: f625946673343f6ea534ccfdd1ff433eb01e5531 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, x11, libXaw}:

stdenv.mkDerivation {
  name = "t1lib-5.1.0";
  src = fetchurl {
    url = http://nix.cs.uu.nl/dist/tarballs/t1lib-5.1.0.tar.gz;
    md5 = "a05bed4aa63637052e60690ccde70421";
  };
  buildInputs = [x11 libXaw];
  buildFlags = "without_doc";
}