2014-03-01 19:37:39 +01:00
|
|
|
{ stdenv, fetchurl, glib, gtk, intltool, libfm, libX11, pango, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-09-20 20:21:01 +02:00
|
|
|
name = "pcmanfm-1.2.2";
|
2014-03-01 19:37:39 +01:00
|
|
|
src = fetchurl {
|
2014-09-20 20:21:01 +02:00
|
|
|
url = "mirror://sourceforge/pcmanfm/pcmanfm-1.2.2.tar.xz";
|
|
|
|
sha256 = "00wmbqrbcrxk1mcdkgdl8ddf3gp28rm5mamqdq72sfr0q2d0287n";
|
2014-03-01 19:37:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|