mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
3bb0a18f0c
svn path=/nixpkgs/trunk/; revision=23693
15 lines
330 B
Nix
15 lines
330 B
Nix
{stdenv, fetchurl, x11, 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 = [x11 libXaw libXpm];
|
|
buildFlags = "without_doc";
|
|
}
|
|
|