packages: freedesktop: Add xdg-terminal-exec
parent
0a99f17973
commit
9a962b695e
|
@ -0,0 +1,25 @@
|
||||||
|
(define-module (radix packages freedesktop)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix build-system copy)
|
||||||
|
#:use-module ((guix licenses) #:prefix license:))
|
||||||
|
|
||||||
|
(define-public xdg-terminal-exec
|
||||||
|
(package
|
||||||
|
(name "xdg-terminal-exec")
|
||||||
|
(version "0.9.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/Vladimir-csp/xdg-terminal-exec")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "05a8gy8dg18cb0bw2m0nfaxn18pdcb9qipscya58x12x29z8lmgf"))))
|
||||||
|
(build-system copy-build-system)
|
||||||
|
(home-page "https://github.com/Vladimir-csp/xdg-terminal-exec")
|
||||||
|
(synopsis "Proposal for XDG terminal execution utility.")
|
||||||
|
(description "Proposal for XDG terminal execution utility.")
|
||||||
|
(license license:gpl3)))
|
||||||
|
xdg-terminal-exec
|
Loading…
Reference in New Issue