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