2022-10-29 15:45:11 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
, fox
|
|
|
|
, fontconfig
|
|
|
|
, freetype
|
|
|
|
, pkg-config
|
|
|
|
, gettext
|
|
|
|
, xcbutil
|
|
|
|
, gcc
|
|
|
|
, intltool
|
|
|
|
, file
|
|
|
|
, libpng
|
|
|
|
, xorg
|
|
|
|
}:
|
2012-10-16 15:30:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-11-07 20:29:51 +00:00
|
|
|
pname = "xfe";
|
2023-01-14 16:21:38 +00:00
|
|
|
version = "1.45";
|
2012-10-16 15:30:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2022-10-15 20:51:33 +00:00
|
|
|
url = "mirror://sourceforge/xfe/xfe-${version}.tar.xz";
|
2023-01-14 16:21:38 +00:00
|
|
|
sha256 = "sha256-RmvVUzqCsRRwXgC4Yabt46uFHnL0XFWncQfXDG+owDc=";
|
2012-10-16 15:30:44 +00:00
|
|
|
};
|
|
|
|
|
2022-09-25 02:49:25 +00:00
|
|
|
nativeBuildInputs = [ pkg-config intltool ];
|
2022-10-29 15:45:11 +00:00
|
|
|
buildInputs = [
|
|
|
|
fox
|
|
|
|
gettext
|
|
|
|
xcbutil
|
|
|
|
gcc
|
|
|
|
file
|
|
|
|
libpng
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
xorg.libX11
|
|
|
|
xorg.libXft
|
|
|
|
];
|
2012-10-16 15:30:44 +00:00
|
|
|
|
2013-05-16 21:35:48 +00:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
|
|
|
|
'';
|
2012-10-16 15:30:44 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-11-07 20:29:51 +00:00
|
|
|
meta = with lib; {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "MS-Explorer like file manager for X";
|
2012-10-16 15:30:44 +00: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!
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://sourceforge.net/projects/xfe/";
|
2021-11-07 20:29:51 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ ];
|
|
|
|
platforms = platforms.linux;
|
2012-10-16 15:30:44 +00:00
|
|
|
};
|
|
|
|
}
|