bottom: add gpu recognition, new apple sdk, refactor (#360568)
[NixPkgs.git] / pkgs / applications / file-managers / xfe / default.nix
blob383ed13c9498cd9cbf7fdcb2429a60099cf1e35e
2   lib,
3   stdenv,
4   fetchurl,
5   fox,
6   fontconfig,
7   freetype,
8   pkg-config,
9   gettext,
10   xcbutil,
11   gcc,
12   intltool,
13   file,
14   libpng,
15   xorg,
18 stdenv.mkDerivation rec {
19   pname = "xfe";
20   version = "1.46.2";
22   src = fetchurl {
23     url = "mirror://sourceforge/xfe/xfe-${version}.tar.xz";
24     sha256 = "sha256-6hNNda4BKCY9E02uFYJnt0JySNp/is1ZqjFlOwQcRWs=";
25   };
27   nativeBuildInputs = [
28     pkg-config
29     intltool
30   ];
31   buildInputs = [
32     fox
33     gettext
34     xcbutil
35     gcc
36     file
37     libpng
38     fontconfig
39     freetype
40     xorg.libX11
41     xorg.libXft
42   ];
44   preConfigure = ''
45     sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
46   '';
48   enableParallelBuilding = true;
50   meta = with lib; {
51     description = "MS-Explorer like file manager for X";
52     longDescription = ''
53       X File Explorer (Xfe) is an MS-Explorer like file manager for X.
54       It is based on the popular, but discontinued, X Win Commander, which was developed by Maxim Baranov.
55       Xfe aims to be the filemanager of choice for all the Unix addicts!
56     '';
57     homepage = "https://sourceforge.net/projects/xfe/";
58     license = licenses.gpl2;
59     maintainers = [ ];
60     platforms = platforms.linux;
61   };