aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2023-02-26 17:31:36 -0300
committerEuAndreh <eu@euandre.org>2023-02-26 17:32:01 -0300
commitffcc6bcac63838f5708a9c325117fc12a3879bcc (patch)
tree7f2b7a8289ea6b8061af5c521b3d671ebec26b3e
parentqueue.scm: Remove tmux-plugin-continuum package (diff)
downloadpackage-repository-ffcc6bcac63838f5708a9c325117fc12a3879bcc.tar.gz
package-repository-ffcc6bcac63838f5708a9c325117fc12a3879bcc.tar.xz
queue.scm: Inline epson-L365 package into $XDG_CONFIG_HOME/guix/system.scm
The reasoning is the same as the previous commit, 75e2ec0e7bdc04fa69a77e09fe355b893e7b278b.
-rw-r--r--src/xyz/euandreh/queue.scm56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm
index 85e126d..7a5f60d 100644
--- a/src/xyz/euandreh/queue.scm
+++ b/src/xyz/euandreh/queue.scm
@@ -89,61 +89,6 @@
-(define-public epson-L365
- (package
- (name "epson-L365")
- (version "1.0.0")
- (source
- (origin
- (method url-fetch)
- (uri
- (string-append
- "https://download3.ebz.epson.net/dsc/f/03/00/03/45/41/92e9c9254f0ee4230a069545ba27ec2858a2c457/epson-inkjet-printer-201401w-"
- version
- "-1lsb3.2.src.rpm"))
- (sha256
- (base32 "0c60m1sd59s4sda38dc5nniwa7dh1b0kv1maajr0x9d38gqlyk3x"))))
- (build-system gnu-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'unpack
- (lambda* (#:key outputs #:allow-other-keys)
- (mkdir "source")
- (chdir "source")
- (system (string-append "rpm2cpio " #$source " | cpio -idv"))
- (invoke "tar" "-xvf" (string-append "epson-inkjet-printer-201401w-" #$version ".tar.gz"))
- (invoke "tar" "-xvf" (string-append "epson-inkjet-printer-filter-" #$version ".tar.gz"))
- (substitute* (find-files (string-append "epson-inkjet-printer-201401w-" #$version "/ppds/"))
- (("/opt/epson-inkjet-printer-201401w/cups/lib")
- (string-append (assoc-ref outputs "out")
- "/lib/cups")))
- (chdir (string-append "epson-inkjet-printer-filter-" #$version))))
- (add-after 'install 'install-extra-files
- (lambda* (#:key outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (model-dir (string-append out "/share/cups/model/epson-inkjet-printer-201401w")))
- (chdir (string-append "../epson-inkjet-printer-201401w-" #$version))
- (mkdir-p model-dir)
- (invoke "cp" "-a" "ppds" model-dir)
- (invoke "cp" "-a" "lib64" "resource" "watermark" out)))))))
- (native-inputs
- (list cpio
- cups-minimal
- libjpeg-turbo
- rpm))
- (synopsis
- "Epson printer driver (L456, L455, L366, L365, L362, L360, L312, L310, L222, L220, L132, L130)")
- (description
- "This software is a filter program used with the Common UNIX Printing
-System (CUPS) under Linux. It supplies high quality printing with
-Seiko Epson Color Ink Jet Printers.")
- (home-page "https://www.openprinting.org/driver/epson-201401w")
- (license ;; SEIKO EPSON CORPORATION SOFTWARE LICENSE AGREEMENT
- (list #; (ng-license:nonfree "https://epson.com/SoftwareLicenseAgreement")
- license:lgpl2.1))))
-
(define-public postfix
(package
(name "postfix")
@@ -725,5 +670,4 @@ keyfile ~a/private.key
(list
postfix
- epson-L365
python-telegram-bot)