Hello! Eelco Dolstra <[email protected]> writes:
> Author: eelco > Date: 2009-01-17 13:08:51 +0000 (Sat, 17 Jan 2009) > New Revision: 13793 > > You can view the changes in this commit at: > https://svn.nixos.org/viewvc/nix?rev=13793&view=rev > > Modified: > nixpkgs/trunk/pkgs/misc/ghostscript/builder.sh > nixpkgs/trunk/pkgs/misc/ghostscript/default.nix > nixpkgs/trunk/pkgs/top-level/all-packages.nix > > Log: > * Ghostscript: build the CUPS filter. This allows CUPS to print to > non-Postscript printers. [...] > Modified: nixpkgs/trunk/pkgs/misc/ghostscript/default.nix > =================================================================== > --- nixpkgs/trunk/pkgs/misc/ghostscript/default.nix 2009-01-17 13:08:04 UTC > (rev 13792) > +++ nixpkgs/trunk/pkgs/misc/ghostscript/default.nix 2009-01-17 13:08:51 UTC > (rev 13793) > @@ -1,13 +1,17 @@ > -{ stdenv, fetchurl, libjpeg, libpng, zlib > +{ stdenv, fetchurl, libjpeg, libpng, libtiff, zlib, pkgconfig, fontconfig, > openssl > , x11Support, x11 ? null > +, cupsSupport ? false, cups ? null > }: > > assert x11Support -> x11 != null; > +assert cupsSupport -> cups != null; > > stdenv.mkDerivation rec { > name = "ghostscript-8.62.0"; > > builder = ./builder.sh; > + > + x = true; Was it intended? Ludo'. _______________________________________________ nix-dev mailing list [email protected] https://mail.cs.uu.nl/mailman/listinfo/nix-dev
