nixpkgs/pkgs/applications/misc/xfe/default.nix
Ryan Mulligan 5630467283 xfe: 1.37 -> 1.42
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfe -h` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfe --help` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfe -v` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfe --version` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfp -h` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfp --help` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfp -v` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfp --version` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfw -h` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfw --help` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfw -v` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfw --version` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfi -h` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfi --help` got 0 exit code
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfi -v` and found version 1.42
- ran `/nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42/bin/xfi --version` and found version 1.42
- found 1.42 with grep in /nix/store/b2qafj27yc2v401kgykcwvqy0gg3jz82-xfe-1.42
2018-03-09 18:35:05 -08:00

33 lines
1 KiB
Nix

{ stdenv, fetchurl, fox, pkgconfig, gettext, xlibsWrapper, gcc, intltool, file, libpng }:
stdenv.mkDerivation rec {
name = "xfe-1.42";
src = fetchurl {
url = "mirror://sourceforge/xfe/${name}.tar.gz";
sha256 = "1v1v0vcbnm30kpyd3rj8f56yh7lfnwy7nbs9785wi229b29fiqx1";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ fox gettext xlibsWrapper gcc intltool file libpng ];
preConfigure = ''
sed -i s,/usr/share/xfe,$out/share/xfe, src/xfedefs.h
'';
enableParallelBuilding = true;
meta = {
description = "MS-Explorer like file manager for X";
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!
'';
homepage = https://sourceforge.net/projects/xfe/;
license = stdenv.lib.licenses.gpl2;
maintainers = [];
platforms = stdenv.lib.platforms.linux;
};
}