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

20 lines
595 B
Nix
Raw Normal View History

{ stdenv, fetchurl, glib, gtk2, intltool, libfm, libX11, pango, pkgconfig }:
2014-03-01 18:37:39 +00:00
2016-04-11 17:41:57 +00:00
stdenv.mkDerivation rec {
2017-01-23 21:01:40 +00:00
name = "pcmanfm-1.2.5";
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";
2017-01-23 21:01:40 +00:00
sha256 = "0rxdh0dfzc84l85c54blq42gczygq8adhr3l9hqzy1dp530cm1hc";
2014-03-01 18:37:39 +00:00
};
buildInputs = [ glib gtk2 intltool libfm libX11 pango pkgconfig ];
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
};
}