dfsg-main: ecrire: Use default enlightenment version

This commit is contained in:
Efraim Flashner 2022-01-02 10:21:02 +02:00
parent 0ed36fc128
commit 61c9f87404
Signed by: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -18,9 +18,11 @@
(define-module (dfsg main ecrire)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix git-download)
#:use-module (guix download)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix build-system cmake)
#:use-module (guix build-system meson)
#:use-module (gnu packages enlightenment)
#:use-module (gnu packages gettext)
#:use-module (gnu packages pkg-config))
@ -28,24 +30,17 @@
(define-public ecrire
(package
(name "ecrire")
(version "0.3.4")
(version "0.2.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Obsidian-StudiosInc/ecrire")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(method url-fetch)
(uri (string-append "https://download.enlightenment.org/rel/"
"apps/ecrire/ecrire-" version ".tar.xz"))
(sha256
(base32
"05aiadyjsyxj35wks7y3k6wjvgycwf4f7jbpxns8lr6ab64yzvk8"))))
(build-system cmake-build-system)
(arguments
'(#:configure-flags '("-DENABLE_NLS:BOOL=TRUE")
#:tests? #f)) ; no tests
(base32 "1pszk583rzclfqy3dyjh1m9pz1hnr84vqz8vw9kngcnmj23mjr6r"))))
(build-system meson-build-system)
(native-inputs
(list gettext-minimal
pkg-config))
(list pkg-config))
(inputs
(list efl))
(home-page "https://www.enlightenment.org")
@ -55,3 +50,34 @@ Enlightenment desktop environment and also Tizen. It is intended to be a native
EFL alternative to gedit (GTK/Gnome), kwrite (KDE/Plasma), and similar basic
text editors.")
(license license:gpl3)))
;(define-public ecrire
; (package
; (name "ecrire")
; (version "0.3.4")
; (source
; (origin
; (method git-fetch)
; (uri (git-reference
; (url "https://github.com/Obsidian-StudiosInc/ecrire")
; (commit (string-append "v" version))))
; (file-name (git-file-name name version))
; (sha256
; (base32
; "05aiadyjsyxj35wks7y3k6wjvgycwf4f7jbpxns8lr6ab64yzvk8"))))
; (build-system cmake-build-system)
; (arguments
; '(#:configure-flags '("-DENABLE_NLS:BOOL=TRUE")
; #:tests? #f)) ; no tests
; (native-inputs
; (list gettext-minimal
; pkg-config))
; (inputs
; (list efl))
; (home-page "https://www.enlightenment.org")
; (synopsis "Text editor for EFL/Enlightenment")
; (description "Ecrire is a basic text editor written in EFL for the
;Enlightenment desktop environment and also Tizen. It is intended to be a native
;EFL alternative to gedit (GTK/Gnome), kwrite (KDE/Plasma), and similar basic
;text editors.")
; (license license:gpl3)))