Add pcmanfm-1.2.0

This commit is contained in:
Thomas Tuegel
2014-03-01 12:37:39 -06:00
parent c9f9835dda
commit 90759ebf63
4 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ stdenv, fetchurl, glib, pkgconfig }:
stdenv.mkDerivation {
name = "menu-cache-0.5.1";
src = fetchurl {
url = "mirror://sourceforge/lxde/menu-cache-0.5.1.tar.gz";
sha256 = "08m1msgbl6j7j72cwcg18klb99jif8h1phkcnbplxkdf3w15irh8";
};
buildInputs = [ glib pkgconfig ];
meta = {
homepage = "http://blog.lxde.org/?tag=menu-cache";
license = stdenv.lib.licenses.gpl2Plus;
description = "Library to read freedesktop.org menu files";
};
}