diff options
author | EuAndreh <eu@euandre.org> | 2022-10-27 19:03:50 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-27 19:03:50 -0300 |
commit | 8051c145d58cadb29d0fca8d4a4649d345de36f0 (patch) | |
tree | a0e9ec6f4600942d929efdd7e271131265c0f12f | |
parent | src/xyz/euandreh/queue.scm: Add driver for EPSON L365 (diff) | |
download | package-repository-8051c145d58cadb29d0fca8d4a4649d345de36f0.tar.gz package-repository-8051c145d58cadb29d0fca8d4a4649d345de36f0.tar.xz |
src/xyz/euandreh/queue.scm: Fix missing model-dir installation path
-rw-r--r-- | src/xyz/euandreh/queue.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index 1b11cb7..d383f4e 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -223,7 +223,7 @@ collections.OrderedDict that works in Python 2.4-2.6.") (add-after 'install 'install-extra-files (lambda* (#:key outputs #:allow-other-keys) (let* ((out (assoc-ref outputs "out")) - (model-dir (string-append 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) |