2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl, libX11, libXinerama, libjpeg, libpng, libtiff, pkg-config,
|
2021-04-27 15:46:16 +01:00
|
|
|
librsvg, glib, gtk2, libXext, libXxf86vm, poppler, xine-lib, ghostscript, makeWrapper }:
|
2009-04-29 17:42:41 +01:00
|
|
|
|
2014-08-19 17:43:37 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "eaglemode";
|
2019-11-01 21:29:15 +00:00
|
|
|
version = "0.94.2";
|
2012-10-04 12:15:01 +01:00
|
|
|
|
2009-04-29 17:42:41 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/eaglemode/${pname}-${version}.tar.bz2";
|
2019-11-01 21:29:15 +00:00
|
|
|
sha256 = "10zxih7gmyhq0az1mnsw2x563l4bbwcns794s4png8rf4d6hjszm";
|
2009-04-29 17:42:41 +01:00
|
|
|
};
|
2012-10-04 12:15:01 +01:00
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2019-01-01 17:46:51 +00:00
|
|
|
buildInputs = [ perl libX11 libXinerama libjpeg libpng libtiff
|
2021-04-27 15:46:16 +01:00
|
|
|
librsvg glib gtk2 libXxf86vm libXext poppler xine-lib ghostscript makeWrapper ];
|
2012-10-04 12:15:01 +01:00
|
|
|
|
2019-01-01 17:46:51 +00:00
|
|
|
# The program tries to dlopen Xxf86vm, Xext and Xinerama, so we use the
|
2010-10-24 22:27:31 +01:00
|
|
|
# trick on NIX_LDFLAGS and dontPatchELF to make it find them.
|
2021-04-27 15:46:16 +01:00
|
|
|
# I use 'yes y' to skip a build error linking with xine-lib,
|
2012-07-02 22:01:23 +01:00
|
|
|
# because xine stopped exporting "_x_vo_new_port"
|
2018-12-01 18:49:28 +00:00
|
|
|
# https://sourceforge.net/projects/eaglemode/forums/forum/808824/topic/5115261
|
2009-04-29 17:42:41 +01:00
|
|
|
buildPhase = ''
|
2019-01-01 17:46:51 +00:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lXxf86vm -lXext -lXinerama"
|
2014-12-04 13:20:47 +00:00
|
|
|
perl make.pl build
|
2009-04-29 17:42:41 +01:00
|
|
|
'';
|
2010-10-24 22:27:31 +01:00
|
|
|
|
|
|
|
dontPatchELF = true;
|
2019-01-01 17:46:51 +00:00
|
|
|
# eaglemode expects doc to be in the root directory
|
|
|
|
forceShare = [ "man" "info" ];
|
2010-10-24 22:27:31 +01:00
|
|
|
|
2009-04-29 17:42:41 +01:00
|
|
|
installPhase = ''
|
|
|
|
perl make.pl install dir=$out
|
2019-01-01 17:46:51 +00:00
|
|
|
wrapProgram $out/bin/eaglemode --set EM_DIR "$out" --prefix LD_LIBRARY_PATH : "$out/lib" --prefix PATH : "${ghostscript}/bin"
|
2009-04-29 17:42:41 +01:00
|
|
|
'';
|
2012-10-04 12:15:01 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://eaglemode.sourceforge.net";
|
2009-10-02 08:39:03 +01:00
|
|
|
description = "Zoomable User Interface";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl3;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2009-10-02 08:39:03 +01:00
|
|
|
};
|
2009-04-29 17:42:41 +01:00
|
|
|
}
|