Merge pull request #13677 from romildo/update.openbox-menu

openbox-menu: 0.5.1 -> 0.8.0

joachifm 66c95e4b 24bbb971

+9 -3
+9 -3
pkgs/applications/misc/openbox-menu/default.nix
··· 1 1 { stdenv, fetchurl, pkgconfig, glib, gtk, menu-cache }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "openbox-menu-0.5.1"; 4 + name = "openbox-menu-${version}"; 5 + version = "0.8.0"; 5 6 6 7 src = fetchurl { 7 8 url = "https://bitbucket.org/fabriceT/openbox-menu/downloads/${name}.tar.bz2"; 8 - sha256 = "11v3nlhqcnks5vms1a7rrvwvj8swc9axgjkp7z0r97lijsg6d3rj"; 9 + sha256 = "1hi4b6mq97y6ajq4hhsikbkk23aha7ikaahm92djw48mgj2f1w8l"; 9 10 }; 10 11 11 12 buildInputs = [ pkgconfig glib gtk menu-cache ]; ··· 15 16 installPhase = "make install prefix=$out"; 16 17 17 18 meta = { 19 + homepage = "http://fabrice.thiroux.free.fr/openbox-menu_en.html"; 18 20 description = "Dynamic XDG menu generator for Openbox"; 19 - homepage = "http://mimasgpc.free.fr/openbox-menu.html"; 21 + longDescription = '' 22 + Openbox-menu is a pipemenu for Openbox window manager. It provides a 23 + dynamic menu listing installed applications. Most of the work is done by 24 + the LXDE library menu-cache. 25 + ''; 20 26 license = stdenv.lib.licenses.gpl3; 21 27 maintainers = [ stdenv.lib.maintainers.romildo ]; 22 28 platforms = stdenv.lib.platforms.unix;