Updating eaglemode.
svn path=/nixpkgs/trunk/; revision=24456
This commit is contained in:
parent
0cb7f90cac
commit
d6f4a6d968
@ -1,18 +1,26 @@
|
|||||||
{ stdenv, fetchurl, perl, libX11, xineLib, libjpeg, libpng, libtiff }:
|
{ stdenv, fetchurl, perl, libX11, xineLib, libjpeg, libpng, libtiff, pkgconfig,
|
||||||
|
librsvg, glib, gtk, libXext, libXxf86vm }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "eaglemode-0.76.0";
|
name = "eaglemode-0.79.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://sourceforge/eaglemode/eaglemode-0.76.0.tar.bz2;
|
url = mirror://sourceforge/eaglemode/eaglemode-0.79.0.tar.bz2;
|
||||||
sha256 = "152v7p9dicm8shwncpcifg4b2l4c61c1qn00469cz38vja67npww";
|
sha256 = "115jydig35dqkrwl3x7fv564bks13nw89vfb46bb5rlr3l4a084s";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl libX11 xineLib libjpeg libpng libtiff ];
|
buildInputs = [ perl libX11 xineLib libjpeg libpng libtiff pkgconfig
|
||||||
|
librsvg glib gtk libXxf86vm libXext ];
|
||||||
|
|
||||||
|
# The program tries to dlopen both Xxf86vm and Xext, so we use the
|
||||||
|
# trick on NIX_LDFLAGS and dontPatchELF to make it find them.
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
export NIX_LDFLAGS="$NIX_LDFLAGS -lXxf86vm -lXext"
|
||||||
yes n | perl make.pl build
|
yes n | perl make.pl build
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
dontPatchELF = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
perl make.pl install dir=$out
|
perl make.pl install dir=$out
|
||||||
# I don't like this... but it seems the way they plan to run it by now.
|
# I don't like this... but it seems the way they plan to run it by now.
|
||||||
|
@ -5418,7 +5418,9 @@ let
|
|||||||
patches = getConfig [ "dwm" "patches" ] [];
|
patches = getConfig [ "dwm" "patches" ] [];
|
||||||
};
|
};
|
||||||
|
|
||||||
eaglemode = callPackage ../applications/misc/eaglemode { };
|
eaglemode = callPackage ../applications/misc/eaglemode {
|
||||||
|
stdenv = stdenv2;
|
||||||
|
};
|
||||||
|
|
||||||
eclipse = callPackage ../applications/editors/eclipse {
|
eclipse = callPackage ../applications/editors/eclipse {
|
||||||
# GTK 2.18 gives glitches such as mouse clicks on buttons not
|
# GTK 2.18 gives glitches such as mouse clicks on buttons not
|
||||||
|
Loading…
x
Reference in New Issue
Block a user