2015-09-15 11:13:22 +02:00
|
|
|
{ stdenv, fetchurl, fox, pkgconfig, gettext, xlibsWrapper, gcc, intltool, file, libpng }:
|
2012-10-16 17:30:44 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-10 03:35:05 +01:00
|
|
|
name = "xfe-1.42";
|
2012-10-16 17:30:44 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-05-17 16:32:03 +02:00
|
|
|
url = "mirror://sourceforge/xfe/${name}.tar.gz";
|
2018-03-10 03:35:05 +01:00
|
|
|
sha256 = "1v1v0vcbnm30kpyd3rj8f56yh7lfnwy7nbs9785wi229b29fiqx1";
|
2012-10-16 17:30:44 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ fox gettext xlibsWrapper gcc intltool file libpng ];
|
2012-10-16 17:30:44 +02:00
|
|
|
|
2013-05-16 23:35:48 +02:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
|
|
|
|
'';
|
2012-10-16 17:30:44 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "MS-Explorer like file manager for X";
|
2012-10-16 17:30:44 +02: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 22:13:27 +01:00
|
|
|
homepage = https://sourceforge.net/projects/xfe/;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2;
|
2017-03-23 03:02:09 +01:00
|
|
|
maintainers = [];
|
2014-08-08 17:58:34 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-10-16 17:30:44 +02:00
|
|
|
};
|
|
|
|
}
|