summary refs log tree commit diff
path: root/pkgs/misc/drivers
Commit message (Collapse)AuthorAge
* treewide: installTargets is a listRobin Gloster2019-12-31
|
* treewide: NIX_*_FLAGS -> stringRobin Gloster2019-12-31
|
* treewide: installFlags is a listRobin Gloster2019-12-30
|
* treewide: replace make/build/configure/patchFlags with nix listsMerijn Broeren2019-12-30
|
* net-snmp: rename from net_snmpJörg Thalheim2019-12-21
|
* hplip: add dbus-python to the depsGraham Christensen2019-12-18
|
* hplip: python2 -> python3Graham Christensen2019-12-18
| | | | Tested with a local HP printer
* Remove myself (fuuzetsu) from maintainer listsMateusz Kowalczyk2019-12-05
| | | | | | I haven't been doing any maintenance for a long time now and not only do I get notified, it also creates a fake impression that all these packages had at least one maintainer when in practice they had none.
* hplip: use python2PackagesFrederik Rietdijk2019-11-13
| | | | | While Python 3 is (partially) supported, it requires more effort to fix it.
* epson-workforce-635-nx625-series: added mirror url for srcwucke132019-10-13
| | | | + added webarchive source for reliable builds in the future
* epson-escpr2: added mirror url for srcwucke132019-10-13
| | | | | | | + added webarchive source for reliable builds in the future + removed `${version}` from url, as it actually adds more hassle to have it in there and no benefits whatsoever, since the url keeps changing other parts too
* epson-escpr: 1.6.16 -> 1.7.3wucke132019-10-13
| | | | + added webarchive source for reliable builds in the future
* epson_201207w: added mirror url for srcwucke132019-10-13
| | | | + added webarchive source for reliable builds in the future
* epson-201106w: added mirror url for srcwucke132019-10-13
| | | | + added webarchive source for reliable builds in the future
* epkowa: added mirror url for srcwucke132019-10-13
| | | | + added webarchive source for reliable builds in the future
* utsushi: 3.57.0 -> 3.59.2wucke132019-10-11
| | | | | | | | | | | + building from gitlab source + reorderd dependencies to be in logical/alphabetical order + replaced patches with substituteInPlace, as patches broke the installChecks and substituteInPlace may be more robust than making new patches for each release. Also the compiled source is now closer to upstream than before. + added installChecks + added all supported devices as listed on epson.net
* treewide: mark some broken packages as brokenLinus Heckemann2019-10-08
| | | | | | | | | Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
* treewide: fix dead anonscm.debian.org linksLinus Heckemann2019-10-04
|
* epson-escpr2: 1.0.29 -> 1.1.1Dima2019-10-01
| | | | | | | | The build was failing because the source rpm does not exist on epsons servers anymore. Thus bumping it to an existing version https://hydra.nixos.org/build/101990975/nixlog/5
* epkowa: update (#68225)symphorien2019-09-08
|
* treewide: Remove unnecessary `--disable-static` (#66759)Niklas Hambüchen2019-08-31
| | | | | | | | | | | | | | * freetype: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes freetype not being overridable to have static libs. * treewide: Remove unnecessary `--disable-static`. The true-by-default `dontDisableStatic` already takes care of it. Fixes these packages not being overridable to have static libs.
* treewide: remove redundant recvolth2019-08-28
|
* treewide: remove redundant quotesvolth2019-08-26
|
* treewide: name -> pnamevolth2019-08-17
|
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* utsushi: init at 3.57.0 (#65223)symphorien2019-08-14
|
* Merge pull request #64722 from Yarny0/hplipThomas Tuegel2019-07-17
|\ | | | | hplip: update version to 3.19.6, fix `hpcups` segfault, enable udev rule file
| * hplip: retain udev rules in WithPlugin versionYarny02019-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Beginning with commit 8ffd6af27e6dfae0a3b4d77db03409f62c5b8d98, the build recipe for `hplipWithPlugin` explicitely drops a udev rule file that is delivered with the sources. In `hplip` (without plugin), the rule file is retained. The udev rules takes care of uploading firmware to certain printers (and maybe of other things), e.g. to HP LaserJet 1000. This commit reinstates the rule file and expands the fixup script so that the rules are also patched in the WithPlugin version.
| * hplip: udev rule: drop `nohup` instead of patching itYarny02019-07-14
| | | | | | | | | | | | | | | | | | | | | | | | hplip's udev rule uses `nohup` to attempt to detach its printer configuration script from the udev process. However, this attempt is futile as udev tracks its child processes with cgroups: https://unix.stackexchange.com/a/243648 The hardcoded path to `nohup` was patched to use Nix' `nohup`. This commit alters the patch script so that it simply drops the call to `nohup`.
| * hplip: patch imageProcessor segfault in `hpcups` (#58949)Yarny02019-07-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Beginning with version 3.18.7, `hpcups` fails with > DEBUG: imageProcessorStartPage failed and segfaults (tested with HP LaserJet 1000 printer). Upstream bug reports: * https://bugs.launchpad.net/hplip/+bug/1788706 * https://bugs.launchpad.net/hplip/+bug/1787289 There is a patch available in one of the reports: https://bugs.launchpad.net/hplip/+bug/1787289/+attachment/5176026/+files/hplip.patch It applies to 3.18.7, but not to later versions. This commit adds a slight adaption of the patch that applies to versions 3.18.9 -- 3.19.6. The patch fixes https://github.com/NixOS/nixpkgs/issues/58949 . Note that the patch is merely a workaround: It simply removes all calls into the ImageProcessor library from `HPCupsFilter.cpp`.
| * hplip: 3.19.1 -> 3.19.6Yarny02019-07-13
| | | | | | | | | | Release notes: https://developers.hp.com/hp-linux-imaging-and-printing/release_notes
| * hplip: add meta.downloadPageYarny02019-07-13
| |
* | sc-controller: 0.4.6.1 -> 0.4.7R. RyanTM2019-07-16
|/ | | | | | | Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sc-controller/versions
* epkowa: add support for network scanners (#60568)Ihar Hrachyshka2019-06-12
|
* hplip: add old version (from 18.09) with aarch64 supportRobert Djubek2019-06-01
|
* hplip-3.16.11: add aarch64-linux to platformsRobert Djubek2019-06-01
|
* [treewide] delete unused patchesc0bw3b2019-05-04
|
* Merge pull request #54906 from furrycatherder/epson-escpr2Joachim F2019-04-12
|\ | | | | epson-escpr2: init at 1.0.29
| * epson-escpr2: init at 1.0.29Sean Haugh2019-01-29
| |
* | hplip: add missing dependency (#58515)hhm02019-03-31
| | | | | | | | | | | | | | Graphical programs (e.g. hp-setup) error with: error: No module named enum This adds the enum module which fixes the error
* | misc: Remove myself from list of maintainersJascha Geerds2019-03-12
| | | | | | | | | | Unfortunately I don't have the time anymore to maintain those packages.
* | Merge pull request #55401 from xtruder/pkgs/hplip/3.19.1xeji2019-02-21
|\ \ | | | | | | hplip: 3.18.5 -> 3.19.1
| * | hplip: 3.18.5 -> 3.19.1Jaka Hudoklin2019-02-07
| | |
* | | Merge branch 'staging-next'Vladimír Čunát2019-02-20
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | This round is without the systemd CVE, as we don't have binaries for that yet. BTW, I just ignore darwin binaries these days, as I'd have to wait for weeks for them.
| * \ \ Merge master into staging-nextFrederik Rietdijk2019-02-18
| |\ \ \
| * \ \ \ Merge branch 'master' into stagingVladimír Čunát2019-01-22
| |\ \ \ \ | | | |_|/ | | |/| |
| * | | | treewide: use ${stdenv.shell} instead of /bin/sh where possiblernhmjoj2019-01-16
| | | | |
* | | | | epkowa: support Epson Perfection V330 PhotoBenedikt Heine2019-02-19
| |_|/ / |/| | |
* | | | Merge pull request #54332 from nphilou/masterRyan Mulligan2019-02-17
|\ \ \ \ | |_|/ / |/| | | epson-201106w: init at 1.0.1
| * | | epson-201106w: init at 1.0.1Philippe2019-02-03
| |/ /