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

20 lines
595 B
Nix
Raw Normal View History

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 ];
meta = with stdenv.lib; {
2014-03-01 22:37:39 +04:00
homepage = "http://blog.lxde.org/?cat=28/";
license = licenses.gpl2Plus;
2014-03-01 22:37:39 +04:00
description = "File manager with GTK+ interface";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
2014-03-01 22:37:39 +04:00
};
}