2015-09-15 10:13:22 +01:00
|
|
|
{ stdenv, fetchurl, fox, pkgconfig, gettext, xlibsWrapper, gcc, intltool, file, libpng }:
|
2012-10-16 16:30:44 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-10 02:35:05 +00:00
|
|
|
name = "xfe-1.42";
|
2012-10-16 16:30:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-17 15:32:03 +01:00
|
|
|
url = "mirror://sourceforge/xfe/${name}.tar.gz";
|
2018-03-10 02:35:05 +00:00
|
|
|
sha256 = "1v1v0vcbnm30kpyd3rj8f56yh7lfnwy7nbs9785wi229b29fiqx1";
|
2012-10-16 16:30:44 +01:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fox gettext xlibsWrapper gcc intltool file libpng ];
|
2012-10-16 16:30:44 +01:00
|
|
|
|
2013-05-16 22:35:48 +01:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
|
|
|
|
'';
|
2012-10-16 16:30:44 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "MS-Explorer like file manager for X";
|
2012-10-16 16:30:44 +01:00
|
|
|
longDescription = ''
|
|
|
|
X File Explorer (Xfe) is an MS-Explorer like file manager for X.
|
|
|
|
It is based on the popular, but discontinued, X Win Commander, which was developed by Maxim Baranov.
|
|
|
|
Xfe aims to be the filemanager of choice for all the Unix addicts!
|
|
|
|
'';
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://sourceforge.net/projects/xfe/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2017-03-23 02:02:09 +00:00
|
|
|
maintainers = [];
|
2014-08-08 16:58:34 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-10-16 16:30:44 +01:00
|
|
|
};
|
|
|
|
}
|