nixpkgs/pkgs/misc/drivers/epson-escpr2/default.nix

49 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-31 16:38:29 +00:00
{ lib, stdenv, fetchurl, cups, busybox }:
2019-01-29 23:46:45 +00:00
stdenv.mkDerivation rec {
pname = "epson-inkjet-printer-escpr2";
2021-10-29 11:26:38 +00:00
version = "1.1.42";
2019-01-29 23:46:45 +00:00
src = fetchurl {
# To find new versions, visit
# http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX and search for
# some printer like for instance "WF-7210" to get to the most recent
# version.
# NOTE: Don't forget to update the webarchive link too!
2020-06-29 17:37:32 +00:00
urls = [
2021-10-29 11:26:38 +00:00
"https://download3.ebz.epson.net/dsc/f/03/00/13/07/72/df79cc238a167b9526f70cc123459c6bbe1edbad/epson-inkjet-printer-escpr2-1.1.42-1lsb3.2.src.rpm"
"https://web.archive.org/web/20211029093638/https://download3.ebz.epson.net/dsc/f/03/00/13/07/72/df79cc238a167b9526f70cc123459c6bbe1edbad/epson-inkjet-printer-escpr2-1.1.42-1lsb3.2.src.rpm"
];
2021-10-29 11:26:38 +00:00
sha256 = "sha256-CsZUurwwoXNWONZKAIkRd0ztmAr5wLWZhirCzJWWqMA=";
2019-01-29 23:46:45 +00:00
};
2021-07-31 16:38:29 +00:00
unpackPhase = ''
runHook preUnpack
rpm2cpio $src | cpio -idmv
tar xvf ${pname}-${version}-1lsb3.2.tar.gz
cd ${pname}-${version}
runHook postUnpack
'';
2019-01-29 23:46:45 +00:00
patches = [ ./cups-filter-ppd-dirs.patch ];
2021-06-27 18:02:31 +00:00
buildInputs = [ cups ];
2021-07-31 16:38:29 +00:00
nativeBuildInputs = [ busybox ];
2019-01-29 23:46:45 +00:00
meta = with lib; {
2019-01-29 23:46:45 +00:00
homepage = "http://download.ebz.epson.net/dsc/search/01/search/";
description = "ESC/P-R 2 Driver (generic driver)";
longDescription = ''
Epson Inkjet Printer Driver 2 (ESC/P-R 2) for Linux and the
corresponding PPD files.
Refer to the description of epson-escpr for usage.
'';
license = licenses.gpl2;
2020-04-25 15:48:31 +00:00
maintainers = with maintainers; [ ma9e ma27 ];
2019-01-29 23:46:45 +00:00
platforms = platforms.linux;
};
}