mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
76 lines
2.4 KiB
Nix
76 lines
2.4 KiB
Nix
{ lib, stdenv, fetchurl, foomatic-filters, bc, ghostscript, systemd, vim, time }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "foo2zjs";
|
|
version = "20210116";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.loegria.net/mirrors/foo2zjs/foo2zjs-${version}.tar.gz";
|
|
sha256 = "14x3wizvncdy0xgvmcx541qanwb7bg76abygqy17bxycn1zh5r1x";
|
|
};
|
|
|
|
buildInputs = [ foomatic-filters bc ghostscript systemd vim ];
|
|
|
|
patches = [
|
|
./no-hardcode-fw.diff
|
|
# Support HBPL1 printers. Updated patch based on
|
|
# https://www.dechifro.org/hbpl/
|
|
./hbpl1.patch
|
|
# Fix "Unimplemented paper code" error for hbpl1 printers
|
|
# https://github.com/mikerr/foo2zjs/pull/2
|
|
./papercode-format-fix.patch
|
|
# Fix AirPrint color printing for Dell 1250c
|
|
# See https://github.com/OpenPrinting/cups/issues/272
|
|
./dell1250c-color-fix.patch
|
|
];
|
|
|
|
makeFlags = [
|
|
"PREFIX=$(out)"
|
|
"APPL=$(out)/share/applications"
|
|
"PIXMAPS=$(out)/share/pixmaps"
|
|
"UDEVBIN=$(out)/bin"
|
|
"UDEVDIR=$(out)/etc/udev/rules.d"
|
|
"UDEVD=${systemd}/sbin/udevd"
|
|
"LIBUDEVDIR=$(out)/lib/udev/rules.d"
|
|
"USBDIR=$(out)/etc/hotplug/usb"
|
|
"FOODB=$(out)/share/foomatic/db/source"
|
|
"MODEL=$(out)/share/cups/model"
|
|
];
|
|
|
|
installFlags = [ "install-hotplug" ];
|
|
|
|
postPatch = ''
|
|
touch all-test
|
|
sed -e "/BASENAME=/iPATH=$out/bin:$PATH" -i *-wrapper *-wrapper.in
|
|
sed -e "s@PREFIX=/usr@PREFIX=$out@" -i *-wrapper{,.in}
|
|
sed -e "s@/usr/share@$out/share@" -i hplj10xx_gui.tcl
|
|
sed -e "s@\[.*-x.*/usr/bin/logger.*\]@type logger >/dev/null 2>\&1@" -i *wrapper{,.in}
|
|
sed -e '/install-usermap/d' -i Makefile
|
|
sed -e "s@/etc/hotplug/usb@$out&@" -i *rules*
|
|
sed -e "s@/usr@$out@g" -i hplj1020.desktop
|
|
sed -e "/PRINTERID=/s@=.*@=$out/bin/usb_printerid@" -i hplj1000
|
|
'';
|
|
|
|
nativeCheckInputs = [ time ];
|
|
doCheck = false; # fails to find its own binary. Also says "Tests will pass only if you are using ghostscript-8.71-16.fc14".
|
|
|
|
preInstall = ''
|
|
mkdir -pv $out/{etc/udev/rules.d,lib/udev/rules.d,etc/hotplug/usb}
|
|
mkdir -pv $out/share/foomatic/db/source/{opt,printer,driver}
|
|
mkdir -pv $out/share/cups/model
|
|
mkdir -pv $out/share/{applications,pixmaps}
|
|
|
|
mkdir -pv "$out/bin"
|
|
cp -v getweb arm2hpdl "$out/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "ZjStream printer drivers";
|
|
maintainers = with maintainers;
|
|
[
|
|
raskin
|
|
];
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|