xfce4-whiskermenu-plugin: 1.5.2 -> 1.5.3

+11 -9
+11 -9
pkgs/desktops/xfce/panel-plugins/xfce4-whiskermenu-plugin.nix
··· 4 with stdenv.lib; 5 stdenv.mkDerivation rec { 6 p_name = "xfce4-whiskermenu-plugin"; 7 - ver_maj = "1.5"; 8 - ver_min = "2"; 9 - rev = "d08418c8d55edfacef190ec14e03e1e9a6988101"; 10 11 - name = "${p_name}-${ver_maj}.${ver_min}"; 12 13 src = fetchFromGitHub { 14 owner = "gottcode"; 15 repo = "xfce4-whiskermenu-plugin"; 16 - inherit rev; 17 - sha256 = "0icphm6bm5p3csh9kwyyvkj2y87shrs12clfifbhv35dm0skb2dx"; 18 }; 19 20 - buildInputs = [ cmake pkgconfig intltool libxfce4util libxfcegui4 xfce4panel 21 - gtk exo garcon ]; 22 23 preFixup = '' 24 substituteInPlace $out/bin/xfce4-popup-whiskermenu \ ··· 27 28 meta = { 29 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; 30 - description = "Whisker Menu is an alternate application launcher for Xfce"; 31 platforms = platforms.linux; 32 maintainers = [ maintainers.pjbarnoy ]; 33 };
··· 4 with stdenv.lib; 5 stdenv.mkDerivation rec { 6 p_name = "xfce4-whiskermenu-plugin"; 7 + version = "1.5.3"; 8 9 + name = "${p_name}-${version}"; 10 11 src = fetchFromGitHub { 12 owner = "gottcode"; 13 repo = "xfce4-whiskermenu-plugin"; 14 + rev = "v${version}"; 15 + sha256 = "07gmf9x3pw6xajklj0idahbnv0psnkhiqhb88bmkp344jirsx6ba"; 16 }; 17 18 + nativeBuildInputs = [ cmake pkgconfig intltool ]; 19 + 20 + buildInputs = [ libxfce4util libxfcegui4 xfce4panel gtk exo garcon ]; 21 + 22 + enableParallelBuilding = true; 23 24 preFixup = '' 25 substituteInPlace $out/bin/xfce4-popup-whiskermenu \ ··· 28 29 meta = { 30 homepage = "http://goodies.xfce.org/projects/panel-plugins/${p_name}"; 31 + description = "Alternate application launcher for Xfce"; 32 + license = licenses.gpl2Plus; 33 platforms = platforms.linux; 34 maintainers = [ maintainers.pjbarnoy ]; 35 };