gnu: Add Rage player.
* gnu/packages/enlightenment.scm: Add Rage. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
e83c6d009f
commit
9523f6378a
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
|
;;; Copyright © 2015 Tomáš Čech <sleep_walker@suse.cz>
|
||||||
|
;;; Copyright © 2015 Daniel Pimentel <d4n1@member.fsf.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -237,6 +238,31 @@ URL and local path detection, themes, popup based content viewer for non-text
|
||||||
contents and more.")
|
contents and more.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public rage
|
||||||
|
(package
|
||||||
|
(name "rage")
|
||||||
|
(version "0.1.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append
|
||||||
|
"https://download.enlightenment.org/rel/apps/rage/rage-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(inputs
|
||||||
|
`(("efl" ,efl)
|
||||||
|
("elementary" ,elementary)))
|
||||||
|
(home-page "https://www.enlightenment.org/about-rage")
|
||||||
|
(synopsis "Video and audio player based on EFL")
|
||||||
|
(description
|
||||||
|
"Rage is a video and audio player written with Enlightenment Foundation
|
||||||
|
Libraries with some extra bells and whistles.")
|
||||||
|
(license license:bsd-2)))
|
||||||
|
|
||||||
(define-public enlightenment
|
(define-public enlightenment
|
||||||
(package
|
(package
|
||||||
(name "enlightenment")
|
(name "enlightenment")
|
||||||
|
|
Reference in New Issue