2012-10-04 13:15:01 +02:00
|
|
|
{ stdenv, fetchurl, perl, libX11, libjpeg, libpng, libtiff, pkgconfig,
|
2011-12-03 16:04:05 +01:00
|
|
|
librsvg, glib, gtk, libXext, libXxf86vm, poppler }:
|
2009-04-29 18:42:41 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-07-02 23:01:23 +02:00
|
|
|
name = "eaglemode-0.84.0";
|
2012-10-04 13:15:01 +02:00
|
|
|
|
2009-04-29 18:42:41 +02:00
|
|
|
src = fetchurl {
|
2012-07-02 23:01:23 +02:00
|
|
|
url = mirror://sourceforge/eaglemode/eaglemode-0.84.0.tar.bz2;
|
|
|
|
sha256 = "0n20b419j0l7h7jr4s3f3n09ka0ysg9nqs8mcwsrx24rcq7nv0cs";
|
2009-04-29 18:42:41 +02:00
|
|
|
};
|
2012-10-04 13:15:01 +02:00
|
|
|
|
|
|
|
buildInputs = [ perl libX11 libjpeg libpng libtiff pkgconfig
|
2011-12-03 16:04:05 +01:00
|
|
|
librsvg glib gtk libXxf86vm libXext poppler ];
|
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"
|
2012-07-02 23:01:23 +02:00
|
|
|
yes y | 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
|
|
|
|
2009-10-02 09:39:03 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://eaglemode.sourceforge.net";
|
|
|
|
description = "Zoomable User Interface";
|
|
|
|
license="GPLv3";
|
2009-10-02 11:37:06 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2009-10-02 09:39:03 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2009-04-29 18:42:41 +02:00
|
|
|
}
|