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