2014-03-01 19:37:39 +01:00
|
|
|
{ stdenv, fetchurl, glib, gtk, intltool, libfm, libX11, pango, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "pcmanfm-1.2.0";
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/pcmanfm/pcmanfm-1.2.0.tar.xz";
|
|
|
|
sha256 = "1cmskj7dpjgrrn89z7cc1h1nsmd6qq3bakf207ldrhrxxv3fxl2j";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ glib gtk intltool libfm libX11 pango pkgconfig ];
|
|
|
|
|
2014-03-07 18:20:18 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-03-01 19:37:39 +01:00
|
|
|
homepage = "http://blog.lxde.org/?cat=28/";
|
2014-03-07 18:20:18 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2014-03-01 19:37:39 +01:00
|
|
|
description = "File manager with GTK+ interface";
|
2014-03-07 18:20:18 +01:00
|
|
|
maintainers = [ maintainers.ttuegel ];
|
|
|
|
platforms = platforms.linux;
|
2014-03-01 19:37:39 +01:00
|
|
|
};
|
|
|
|
}
|