guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add dmenu.


From: ???
Subject: 01/01: gnu: Add dmenu.
Date: Thu, 04 Dec 2014 10:55:54 +0000

iyzsong pushed a commit to branch master
in repository guix.

commit 65a056900f02c1739224bcb89d9bc2f1343c8c56
Author: 宋文武 <address@hidden>
Date:   Wed Dec 3 20:37:33 2014 +0800

    gnu: Add dmenu.
    
    * gnu/packages/dwm.scm (dmenu): New variable.
---
 gnu/packages/dwm.scm |   28 ++++++++++++++++++++++++++++
 1 files changed, 28 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/dwm.scm b/gnu/packages/dwm.scm
index b5dbe73..88758f2 100644
--- a/gnu/packages/dwm.scm
+++ b/gnu/packages/dwm.scm
@@ -84,3 +84,31 @@ left corner.
 dwm draws a small customizable border around windows to indicate the focus
 state.")
     (license x11)))
+
+(define-public dmenu
+  (package
+    (name "dmenu")
+    (version "4.5")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "http://dl.suckless.org/tools/dmenu-";
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "0l58jpxrr80fmyw5pgw5alm5qry49aw6y049745wl991v2cdcb08"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:tests? #f ; no tests
+       #:make-flags (list "CC=gcc"
+                          (string-append "PREFIX=" %output))
+       #:phases
+       (alist-delete 'configure %standard-phases)))
+    (inputs
+     `(("libx11" ,libx11)
+       ("libxinerama" ,libxinerama)))
+    (home-page "http://tools.suckless.org/dmenu/";)
+    (synopsis "Dynamic menu")
+    (description
+     "A dynamic menu for X, originally designed for dwm.  It manages large
+numbers of user-defined menu items efficiently.")
+    (license x11)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]