1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-23 11:19:04 -04:00
nixpkgs/pkgs/applications/misc/pcmanfm/default.nix

20 lines
597 B
Nix
Raw Normal View History

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