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

29 lines
891 B
Nix
Raw Normal View History

2017-08-08 20:43:54 +00:00
{ stdenv, fetchurl, glib, intltool, libfm, libX11, pango, pkgconfig
, wrapGAppsHook, gnome3, withGtk3 ? true, gtk2, gtk3 }:
2014-03-01 18:37:39 +00:00
2017-08-08 20:43:54 +00:00
let
libfm' = libfm.override { inherit withGtk3; };
gtk = if withGtk3 then gtk3 else gtk2;
inherit (stdenv.lib) optional;
in
2016-04-11 17:41:57 +00:00
stdenv.mkDerivation rec {
name = "pcmanfm-1.3.0";
2014-03-01 18:37:39 +00:00
src = fetchurl {
2016-04-11 17:41:57 +00:00
url = "mirror://sourceforge/pcmanfm/${name}.tar.xz";
sha256 = "1ywgfyklms5hqkapsbjps4kyx20ac0d1qk16ww74yagkyfdkwsas";
2014-03-01 18:37:39 +00:00
};
buildInputs = [ glib gtk libfm' libX11 pango gnome3.defaultIconTheme ];
nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ];
2017-08-08 20:43:54 +00:00
configureFlags = optional withGtk3 "--with-gtk=3";
2014-03-01 18:37:39 +00:00
meta = with stdenv.lib; {
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
};
}