nixpkgs/pkgs/applications/misc/pcmanfm/default.nix

20 lines
597 B
Nix
Raw Normal View History

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