summaryrefslogtreecommitdiff
path: root/gnu/packages/enlightenment.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2021-12-28 16:16:19 +0200
committerEfraim Flashner <efraim@flashner.co.il>2021-12-28 17:05:41 +0200
commit2d5965979d42c74e7f8a9effa7240027e0b96231 (patch)
tree93ef73af92a90e1c4de89eb4b9a6d2afc23492e0 /gnu/packages/enlightenment.scm
parent73ff9d6e0eedae5c365c784906c55918a2ed7507 (diff)
gnu: ephoto: Update to 1.6.0.
* gnu/packages/enlightenment.scm (ephoto): Update to 1.6.0. [build-system]: Switch to meson-build-system. [arguments]: Remove trailing #t from phases. [native-inputs]: Remove check.
Diffstat (limited to 'gnu/packages/enlightenment.scm')
-rw-r--r--gnu/packages/enlightenment.scm10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm
index 7bf7ba73e6f..4335197e22a 100644
--- a/gnu/packages/enlightenment.scm
+++ b/gnu/packages/enlightenment.scm
@@ -516,23 +516,23 @@ and in creating applications based on the Enlightenment Foundation Library suite
516(define-public ephoto 516(define-public ephoto
517 (package 517 (package
518 (name "ephoto") 518 (name "ephoto")
519 (version "1.5") 519 (version "1.6.0")
520 (source 520 (source
521 (origin 521 (origin
522 (method url-fetch) 522 (method url-fetch)
523 (uri (string-append "https://download.enlightenment.org/rel/" 523 (uri (string-append "https://download.enlightenment.org/rel/"
524 "apps/ephoto/ephoto-" version ".tar.xz")) 524 "apps/ephoto/ephoto-" version ".tar.xz"))
525 (sha256 525 (sha256
526 (base32 "1q7v9abjp9jrs08xc7pqaac64yzax24dk1snjb9rciarzzh3mlzy")))) 526 (base32 "1lvhcs4ba8h3z78nyycbww8mj4cscb8k200dcc3cdy8vrvrp7g1n"))))
527 (build-system gnu-build-system) 527 (build-system meson-build-system)
528 (arguments 528 (arguments
529 '(#:phases 529 '(#:phases
530 (modify-phases %standard-phases 530 (modify-phases %standard-phases
531 (add-after 'unpack 'set-home-directory 531 (add-after 'unpack 'set-home-directory
532 ;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2 532 ;; FATAL: Cannot create run dir '/homeless-shelter/.run' - errno=2
533 (lambda _ (setenv "HOME" "/tmp") #t))))) 533 (lambda _ (setenv "HOME" "/tmp"))))))
534 (native-inputs 534 (native-inputs
535 (list check pkg-config)) 535 (list pkg-config))
536 (inputs 536 (inputs
537 (list efl)) 537 (list efl))
538 (home-page "https://smhouston.us/projects/ephoto/") 538 (home-page "https://smhouston.us/projects/ephoto/")