2009-04-29 18:42:41 +02:00
|
|
|
{ stdenv, fetchurl, perl, libX11, xineLib, libjpeg, libpng, libtiff }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-02-01 17:07:59 +01:00
|
|
|
name = "eaglemode-0.76.0";
|
2009-04-29 18:42:41 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-02-01 17:07:59 +01:00
|
|
|
url = mirror://sourceforge/eaglemode/eaglemode-0.76.0.tar.bz2;
|
|
|
|
sha256 = "152v7p9dicm8shwncpcifg4b2l4c61c1qn00469cz38vja67npww";
|
2009-04-29 18:42:41 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl libX11 xineLib libjpeg libpng libtiff ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
yes n | perl make.pl build
|
|
|
|
'';
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
}
|