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

28 lines
803 B
Nix
Raw Normal View History

2017-08-08 22:43:54 +02:00
{ stdenv, fetchurl, glib, intltool, libfm, libX11, pango, pkgconfig
, withGtk3 ? true, gtk2, gtk3 }:
2014-03-01 19:37:39 +01:00
2017-08-08 22:43:54 +02:00
let
libfm' = libfm.override { inherit withGtk3; };
gtk = if withGtk3 then gtk3 else gtk2;
inherit (stdenv.lib) optional;
in
2016-04-11 19:41:57 +02:00
stdenv.mkDerivation rec {
2017-01-23 22:01:40 +01:00
name = "pcmanfm-1.2.5";
2014-03-01 19:37:39 +01:00
src = fetchurl {
2016-04-11 19:41:57 +02:00
url = "mirror://sourceforge/pcmanfm/${name}.tar.xz";
2017-01-23 22:01:40 +01:00
sha256 = "0rxdh0dfzc84l85c54blq42gczygq8adhr3l9hqzy1dp530cm1hc";
2014-03-01 19:37:39 +01:00
};
2017-08-08 22:43:54 +02:00
buildInputs = [ glib gtk intltool libfm' libX11 pango pkgconfig ];
configureFlags = optional withGtk3 "--with-gtk=3";
2014-03-01 19:37:39 +01:00
meta = with stdenv.lib; {
homepage = http://blog.lxde.org/?cat=28/;
license = licenses.gpl2Plus;
2014-03-01 19:37:39 +01:00
description = "File manager with GTK+ interface";
maintainers = [ maintainers.ttuegel ];
platforms = platforms.linux;
2014-03-01 19:37:39 +01:00
};
}