summary refs log tree commit diff
path: root/pkgs/misc/drivers/gutenprint
Commit message (Collapse)AuthorAge
* treewide: http -> https sources (#42676)Silvan Mosberger2018-06-28
| | | | | | | | | * treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
* treewide: remove platform assertionsMatthew Bauer2018-05-03
| | | | linux: readd assertion
* gutenprint: 5.2.13 -> 5.2.14R. RyanTM2018-04-13
| | | | | | | | | | | | | | | | | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gutenprint/versions. These checks were done: - built on NixOS - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/escputil -h’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/escputil --help’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/testpattern -h’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/testpattern --help’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/testpattern help’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/cups-genppd.5.2 -h’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/cups-genppd.5.2 help’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/cups-genppdupdate -h’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/cups-genppdupdate --help’ got 0 exit code - ran ‘/nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14/bin/cups-genppdupdate help’ got 0 exit code - found 5.2.14 with grep in /nix/store/8pdjcfv46m5w8ifh68mvajwkn3vjwal1-gutenprint-5.2.14 - directory tree listing: https://gist.github.com/6d652f72cb774ccd13cc489d708ad63d
* gutenprint: fix buildOrivej Desh2017-11-29
| | | | after "gnutls: 3.5.15 -> 3.6.1" became independent from zlib.
* cups service: Automatically detect Gutenprint in driversMichael Weiss2017-08-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Additional CUPS drivers can be added via "services.printing.drivers" but Gutenprint was an exception. It was possible to add a Gutenprint derivation to that list and it would work at first but unlike the other drivers Gutenprint requires a script to be run after each update or any attempt to print something would simply fail and an error would show up in the jobs queue (http://localhost:631/jobs/): "The PPD version (5.2.11) is not compatible with Gutenprint 5.2.13. Please run `/nix/store/7762kpyhfkcgmr3q81v1bbyy0bjhym80-gutenprint-5.2.13/sbin/cups-genppdupdate' as administrator." This is due to state in "/var/lib/cups/ppd" and one would need to run "/nix/store/.../bin/cups-genppdupdate -p /var/lib/cups/ppd" manually. The alternative was to enable the following option: "services.printing.gutenprint" but this had two disadvantages: 1) It is an exception that one could be unaware of or that could potentially cause some confusion. 2) One couldn't use a customized Gutenprint derivation in "services.printing.drivers" but would instead have to overwrite "pkgs.gutenprint". This new approach simply detects a Gutenprint derivation in "services.printing.gutenprint" by checking if the meta set of a derivation contains "isGutenprint = true". Therefore no special exception for Gutenprint would be required and it could easily be applied to other drivers if they would require such a script to be run.
* Update homepage attributes: http -> httpsmimadrid2017-08-03
| | | | | Homepage link "http://.../" is a permanent redirect to "https://.../" and should be updated https://repology.org/repository/nix_stable/problems
* gutenprint: 5.2.11 -> 5.2.13André-Patrick Bubel2017-08-02
|
* treewide: Add lots of meta.platformsTuomas Tynkkynen2016-08-02
| | | | Build-tested on x86_64 Linux & Mac.
* gutenprint: fix cups and gimp pathsNikolay Amiantov2016-02-26
| | | | Also disable GIMP support by default to reduce closure
* gutenprint: 5.2.10 -> 5.2.11Nikolay Amiantov2016-01-17
| | | | | | | | | | | Rework gutenprint derivation: * Convert to regular stdenv.mkDerivation; * Enable IJS driver; * Fix cups-genppdupdate; * Move things around to the proper directories; * Enable parallel building; * Clean from old hacks.
* rename all occurrences of stdenv.cc.gcc to stdenv.cc.ccEric Seidel2015-01-14
|
* Change occurrences of gcc to the more general ccJohn Wiegley2014-12-26
| | | | | This is done for the sake of Yosemite, which does not have gcc, and yet this change is also compatible with Linux.
* gutenprint: update from 5.2.9 to 5.2.10Mateusz Kowalczyk2014-09-30
|
* gutenprint: wrap sbin/cups-genppd.5.2Cillian de Róiste2013-11-10
| | | | | | | | | | | | | | This is used to generate ppd files for cups: $ cups-genppd.5.2 -M | grep p50 canon-cp500 escp2-p50 $ cups-genppd.5.2 -p . escp2-p50 This will create the relevant ppd file in the current directory. This can then be used by cups after setting services.drivers.drivers = [pkgs.gutenprint]; and configuring the printer to use this ppd e.g. via the web interface on http://localhost:631
* gutenprint: fix the cupsd driverCillian de Róiste2013-11-10
|
* gutenprint: upgrade to 5.2.9Cillian de Róiste2013-11-10
|
* Create a symbolic link to cups/lib so that gutenprintBin can be specified as ↵Ambrus Kaposi2012-11-30
| | | | a driver in services.printing.drivers in /etc/nixos/configuration.nix
* gutenprint-5.2.7, fix FTBFSYury G. Kudryashov2012-06-09
| | | | svn path=/nixpkgs/trunk/; revision=34409
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* Bumping to version 5.2.6 and fixing the urlCillian de Roiste2011-02-09
| | | | svn path=/nixpkgs/trunk/; revision=25858
* * Get rid of many instances of "args: with args;", and other codingEelco Dolstra2010-07-28
| | | | | | | guidelines violations. * Updated libsamplerate to 0.1.7. svn path=/nixpkgs/trunk/; revision=22782
* gutenprint: Fix name, improve style.Ludovic Courtès2009-11-22
| | | | svn path=/nixpkgs/trunk/; revision=18532
* svn path=/nixpkgs/trunk/; revision=17083Eelco Dolstra2009-09-13
|
* * Fix nix-env evaluation.Eelco Dolstra2009-09-02
| | | | svn path=/nixpkgs/trunk/; revision=16931
* adding gutenprint (former gimp-print) and gutenprintBin. I still haven'tMarc Weber2009-08-27
found the source of the binary package containing the .ppd files Still impure but works. See comment. svn path=/nixpkgs/trunk/; revision=16881