rxvt-unicode and jdk update provided by Tobias Hammerschmidt

svn path=/nixpkgs/trunk/; revision=9561
This commit is contained in:
Marc Weber 2007-10-31 12:17:14 +00:00
parent 2b8778748a
commit 16d701c9ab
3 changed files with 27 additions and 6 deletions

View File

@ -0,0 +1,15 @@
args: with args; stdenv.mkDerivation {
name = "rxvt-unicode-8.4";
buildInputs = [ libX11 libXt libXft perl ];
src = fetchurl {
url = http://dist.schmorp.de/rxvt-unicode/rxvt-unicode-8.4.tar.bz2;
sha256 = "ff8d904a815151edde72bb3e51d1561125813569cb3d487cbac428ec23facdbb";
};
meta = {
description = "rxvt-unicode is a clone of the well known terminal emulator rxvt.";
homepage = "http://software.schmorp.de/pkg/rxvt-unicode.html";
};
}

View File

@ -14,18 +14,18 @@ assert pluginSupport -> libstdcpp5 != null;
(stdenv.mkDerivation ({ (stdenv.mkDerivation ({
name = name =
if installjdk then "jdk-1.6.0" else "jre-1.6.0"; if installjdk then "jdk-1.6.0_3" else "jre-1.6.0_3";
src = src =
if stdenv.system == "i686-linux" then if stdenv.system == "i686-linux" then
fetchurl { fetchurl {
url = http://download.java.net/dlj/binaries/jdk-6-dlj-linux-i586.bin; url = http://download.java.net/dlj/binaries/jdk-6u3-dlj-linux-i586.bin;
sha256 = "0rw48124fdc5rhafj6qzrysb4w823jbn3awxgn07kcy1nvnrhkqw"; sha256 = "5c44208fbd5f90b3e6a0692ed9e1e98f5feb0c88aa0cfae5186dddb1f05f731b";
} }
else if stdenv.system == "x86_64-linux" then else if stdenv.system == "x86_64-linux" then
fetchurl { fetchurl {
url = http://download.java.net/dlj/binaries/jdk-6-dlj-linux-amd64.bin; url = http://download.java.net/dlj/binaries/jdk-6u3-dlj-linux-amd64.bin;
sha256 = "1hr16f5kr3xcyhkl3yc2qi2kxg2avr3cmlxv4awpnj0930rmvwzi"; sha256 = "8bc80ea1bf739674c1cacdfba9987a4d15adb54f4b1462a0b48b79815f56b311";
} }
else else
abort "jdk requires i686-linux or x86_64 linux"; abort "jdk requires i686-linux or x86_64 linux";
@ -83,4 +83,4 @@ assert pluginSupport -> libstdcpp5 != null;
else else
{} {}
) )
) )

View File

@ -3897,6 +3897,12 @@ rec {
inherit (xlibs) libXt libX11; inherit (xlibs) libXt libX11;
}; };
# = urxvt
rxvt_unicode = import ../applications/misc/rxvt_unicode {
inherit lib fetchurl stdenv perl;
inherit (xlibs) libXt libX11 libXft;
};
sbagen = import ../applications/misc/sbagen { sbagen = import ../applications/misc/sbagen {
inherit fetchurl stdenv; inherit fetchurl stdenv;
}; };