New package: openbox-menu

This commit is contained in:
José Romildo Malaquias 2014-09-15 08:34:16 -03:00
parent 5c80997ebd
commit 63f6cc0f7b
3 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, glib, gtk, menu-cache }:
stdenv.mkDerivation rec {
name = "openbox-menu-0.5.1";
src = fetchurl {
url = "https://bitbucket.org/fabriceT/openbox-menu/downloads/${name}.tar.bz2";
sha256 = "11v3nlhqcnks5vms1a7rrvwvj8swc9axgjkp7z0r97lijsg6d3rj";
};
buildInputs = [ pkgconfig glib gtk menu-cache ];
patches = [ ./with-svg.patch ];
installPhase = "make install prefix=$out";
meta = {
description = "Dynamic XDG menu generator for Openbox";
homepage = "http://mimasgpc.free.fr/openbox-menu.html";
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.romildo ];
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -0,0 +1,11 @@
--- a/Makefile.old 2013-12-11 06:39:44.397358610 +0100
+++ b/Makefile 2013-12-11 06:39:51.082275037 +0100
@@ -7,7 +7,7 @@
CFLAGS+=-DWITH_ICONS
# Uncomment this line if Openbox can display SVG icons
# Check SVG support with '$ ldd /usr/bin/openbox | grep svg', librsvg must appear..
-# CFLAGS+=-DWITH_SVG
+CFLAGS+=-DWITH_SVG
prefix= /usr/local
DESTDIR ?= $(prefix)

View file

@ -9671,6 +9671,8 @@ let
openbox = callPackage ../applications/window-managers/openbox { };
openbox-menu = callPackage ../applications/misc/openbox-menu { };
openimageio = callPackage ../applications/graphics/openimageio { };
openjump = callPackage ../applications/misc/openjump { };