Version bump: libfm-1.2.2.1 and menu-cache-0.7.0

This commit is contained in:
Thomas Tuegel
2014-09-20 13:20:19 -05:00
parent 1cbcd2baae
commit cfcf643bb9
3 changed files with 22 additions and 11 deletions
+12 -6
View File
@@ -1,13 +1,19 @@
{ stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala }:
{ stdenv, fetchurl, glib, gtk, intltool, menu-cache, pango, pkgconfig, vala
, extraOnly ? false }:
let name = "libfm-1.2.2.1";
inherit (stdenv.lib) optional;
in
stdenv.mkDerivation {
name = "libfm-1.2.0";
name = if extraOnly then "libfm-extra-1.2.2.1" else "libfm-1.2.2.1";
src = fetchurl {
url = "mirror://sourceforge/pcmanfm/libfm-1.2.0.tar.xz";
sha256 = "08pwdrmfm9rl41lj2niyjqq2bdvydxk7v2shjxh5gk1xwj238lgh";
url = "mirror://sourceforge/pcmanfm/libfm-1.2.2.1.tar.xz";
sha256 = "0aa37arr0h2nppjh7ppf00np2d8mb43imvfq9b7wq5cnzpvs7c6v";
};
buildInputs = [ glib gtk intltool menu-cache pango pkgconfig vala ];
buildInputs = [ glib gtk intltool pango pkgconfig vala ]
++ optional (!extraOnly) menu-cache;
configureFlags = optional extraOnly "--with-extra-only";
meta = with stdenv.lib; {
homepage = "http://blog.lxde.org/?cat=28/";