2012-10-04 13:15:01 +02:00
|
|
|
{ stdenv, fetchurl, perl, libX11, libjpeg, libpng, libtiff, pkgconfig,
|
2016-09-11 23:24:51 +02:00
|
|
|
librsvg, glib, gtk2, libXext, libXxf86vm, poppler, xineLib }:
|
2009-04-29 18:42:41 +02:00
|
|
|
|
2014-08-19 18:43:37 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-11-19 15:36:47 +01:00
|
|
|
name = "eaglemode-0.86.0";
|
2012-10-04 13:15:01 +02:00
|
|
|
|
2009-04-29 18:42:41 +02:00
|
|
|
src = fetchurl {
|
2014-08-19 18:43:37 +02:00
|
|
|
url = "mirror://sourceforge/eaglemode/${name}.tar.bz2";
|
2014-11-19 15:36:47 +01:00
|
|
|
sha256 = "1a2hzyck95g740qg4p4wd4fjwsmlknh75i9sbx5r5v9pyr4i3m4f";
|
2009-04-29 18:42:41 +02:00
|
|
|
};
|
2012-10-04 13:15:01 +02:00
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ perl libX11 libjpeg libpng libtiff
|
2016-09-11 23:24:51 +02:00
|
|
|
librsvg glib gtk2 libXxf86vm libXext poppler xineLib ];
|
2012-10-04 13:15:01 +02:00
|
|
|
|
2010-10-24 23:27:31 +02:00
|
|
|
# The program tries to dlopen both Xxf86vm and Xext, so we use the
|
|
|
|
# trick on NIX_LDFLAGS and dontPatchELF to make it find them.
|
2012-10-04 13:15:01 +02:00
|
|
|
# I use 'yes y' to skip a build error linking with xineLib,
|
2012-07-02 23:01:23 +02:00
|
|
|
# because xine stopped exporting "_x_vo_new_port"
|
|
|
|
# http://sourceforge.net/projects/eaglemode/forums/forum/808824/topic/5115261
|
2009-04-29 18:42:41 +02:00
|
|
|
buildPhase = ''
|
2010-10-24 23:27:31 +02:00
|
|
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lXxf86vm -lXext"
|
2014-12-04 14:20:47 +01:00
|
|
|
perl make.pl build
|
2009-04-29 18:42:41 +02:00
|
|
|
'';
|
2010-10-24 23:27:31 +02:00
|
|
|
|
|
|
|
dontPatchELF = true;
|
|
|
|
|
2009-04-29 18:42:41 +02:00
|
|
|
installPhase = ''
|
|
|
|
perl make.pl install dir=$out
|
|
|
|
# I don't like this... but it seems the way they plan to run it by now.
|
|
|
|
# Run 'eaglemode.sh', not 'eaglemode'.
|
|
|
|
ln -s $out/eaglemode.sh $out/bin/eaglemode.sh
|
|
|
|
'';
|
2012-10-04 13:15:01 +02:00
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://eaglemode.sourceforge.net;
|
2009-10-02 09:39:03 +02:00
|
|
|
description = "Zoomable User Interface";
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl3;
|
2015-05-27 21:56:04 +02:00
|
|
|
maintainers = with maintainers; [ viric ];
|
2015-11-17 21:29:29 +01:00
|
|
|
platforms = platforms.linux;
|
2017-10-29 00:36:59 +02:00
|
|
|
broken = true;
|
2009-10-02 09:39:03 +02:00
|
|
|
};
|
2009-04-29 18:42:41 +02:00
|
|
|
}
|