[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/10: gnu: Add dex.
From: |
guix-commits |
Subject: |
04/10: gnu: Add dex. |
Date: |
Tue, 13 Oct 2020 17:37:23 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 3182d629a25b1132fc542391b451580d44d9f92c
Author: James Smith <jsubuntuxp@disroot.org>
AuthorDate: Wed Oct 7 13:44:14 2020 -0700
gnu: Add dex.
* gnu/packages/xdisorg.scm (dex): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
gnu/packages/xdisorg.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index 5398761..d9c8905 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -40,6 +40,7 @@
;;; Copyright © 2020 Ivan Kozlov <kanichos@yandex.ru>
;;; Copyright © 2020 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
+;;; Copyright © 2020 James Smith <jsubuntuxp@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -104,6 +105,7 @@
#:use-module (gnu packages xorg)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages bison)
+ #:use-module (gnu packages sphinx)
#:use-module (ice-9 match))
;; packages outside the x.org system proper
@@ -2516,3 +2518,34 @@ using @command{dmenu}.")
such as sway, similar to @command{rofi}.")
(home-page "https://hg.sr.ht/~scoopta/wofi")
(license license:gpl3+)))
+
+(define-public dex
+ (package
+ (name "dex")
+ (version "0.9.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/jceb/dex"))
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "03aapcywnz4kl548cygpi25m8adwbmqlmwgxa66v4156ax9dqs86"))
+ (file-name (git-file-name name version))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure))
+ #:tests? #f))
+ (inputs
+ `(("python", python)))
+ (native-inputs
+ `(("python-sphinx" ,python-sphinx)))
+ (home-page "https://github.com/jceb/dex")
+ (synopsis "Execute DesktopEntry files")
+ (description
+ "@command{dex}, @dfn{DesktopEntry Execution}, is a program to generate
+and execute @file{.desktop} files of the Application type.")
+ (license license:gpl3+)))
- branch master updated (ada061c -> e8c5533), guix-commits, 2020/10/13
- 01/10: gnu: Remove python2-gst., guix-commits, 2020/10/13
- 02/10: gnu: xf86-input-libinput: Update to 0.30.0., guix-commits, 2020/10/13
- 04/10: gnu: Add dex.,
guix-commits <=
- 06/10: gnu: muchsync: Use pandoc instead of ghc-pandoc., guix-commits, 2020/10/13
- 07/10: gnu: git-annex: Update to 8.20201007., guix-commits, 2020/10/13
- 08/10: gnu: Add bindfs., guix-commits, 2020/10/13
- 09/10: gnu: Add python-dictdiffer., guix-commits, 2020/10/13
- 10/10: gnu: Add python-dpath., guix-commits, 2020/10/13
- 05/10: gnu: python-chardet: Enable tests., guix-commits, 2020/10/13
- 03/10: gnu: nmap: Update license., guix-commits, 2020/10/13