packages: freedesktop: Add xdg-terminal-exec

pull/3/head
Luis Guilherme Coelho 2024-03-26 20:35:37 -03:00
parent 0a99f17973
commit 9a962b695e
No known key found for this signature in database
GPG Key ID: 1F2E76ACE3F531C8
1 changed files with 25 additions and 0 deletions

View File

@ -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