mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
e33810594d
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
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, fetchurl, cups, busybox }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "epson-inkjet-printer-escpr2";
|
|
version = "1.1.1";
|
|
|
|
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: keep in mind that many parts of the URL change and not just version.
|
|
url = "https://download3.ebz.epson.net/dsc/f/03/00/09/72/04/c6d928e83e558c4ba1e7e8bcb5c1fe080b8095eb/${pname}-${version}-1lsb3.2.src.rpm";
|
|
sha256 = "02vdlhvinsx6vsjq172b2c1vrfzkg0w9j5lbsnjvj6yq3yqz5b5q";
|
|
};
|
|
|
|
patches = [ ./cups-filter-ppd-dirs.patch ];
|
|
|
|
buildInputs = [ cups busybox ];
|
|
|
|
unpackPhase = ''
|
|
rpm2cpio $src | cpio -idmv
|
|
|
|
tar xvf ${pname}-${version}-1lsb3.2.tar.gz
|
|
cd ${pname}-${version}
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
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;
|
|
maintainers = with maintainers; [ ma9e ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|