epson-escpr2: format with nixfmt-rfc-style

This commit is contained in:
Shawn8901 2024-07-09 20:14:17 +02:00
parent 03c07e5a7a
commit 3996f01a89

View File

@ -1,4 +1,11 @@
{ lib, stdenv, fetchurl, cups, rpm, cpio }: {
lib,
stdenv,
fetchurl,
cups,
rpm,
cpio,
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "epson-inkjet-printer-escpr2"; pname = "epson-inkjet-printer-escpr2";
@ -26,7 +33,10 @@ stdenv.mkDerivation rec {
patches = [ ./cups-filter-ppd-dirs.patch ]; patches = [ ./cups-filter-ppd-dirs.patch ];
buildInputs = [ cups ]; buildInputs = [ cups ];
nativeBuildInputs = [ rpm cpio ]; nativeBuildInputs = [
rpm
cpio
];
meta = with lib; { meta = with lib; {
homepage = "http://download.ebz.epson.net/dsc/search/01/search/"; homepage = "http://download.ebz.epson.net/dsc/search/01/search/";
@ -38,7 +48,11 @@ stdenv.mkDerivation rec {
Refer to the description of epson-escpr for usage. Refer to the description of epson-escpr for usage.
''; '';
license = licenses.gpl2Plus; license = licenses.gpl2Plus;
maintainers = with maintainers; [ ma9e ma27 shawn8901 ]; maintainers = with maintainers; [
ma9e
ma27
shawn8901
];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }