nixpkgs-suyu/pkgs/system/populate-cache.nix
Martin Bravenboer 7e75cb7cc4 Added ecj (The Eclipse Compiler for Java) to Nix. This means that Java
5.0 code can now be compiled and run in Nix (the J2RE 5.0 was already
available without deployment problems).

Also, I need ecj to checkout its behaviour and warnings as a second
reference (javac).


svn path=/nixpkgs/trunk/; revision=3783
2005-09-06 00:00:22 +00:00

155 lines
2 KiB
Nix

let {
allPackages = import ./all-packages.nix;
i686LinuxPkgs = {inherit (allPackages {system = "i686-linux";})
coreutils
findutils
diffutils
gnupatch
gnused
gnugrep
gawk
enscript
gnutar
zip
unzip
gzip
bzip2
zdelta
bsdiff
wget
par2cmdline
cksfv
bittorrent
graphviz
bash
binutils
gnum4
autoconf
automake19x
libtool
pkgconfig
valgrind
texinfo
readline
octave
gnumake
bisonnew
flexnew
gccWrapped
aterm
# atermjava
# jjtraveler
# sharedobjects
# jakartabcel
jakartaregexp
sdf
strategoxt
strategoxtUtils
# ghc
# helium
perl
python
libxml2
libxslt
docbook_xml_dtd_42
docbook_xml_dtd_43
docbook_ng
docbook_xml_xslt
jing_tools
subversion
pan
sylpheed
firefoxWrapper
thunderbird
lynx
gaim
MPlayer
MPlayerPlugin
vlc
xineUI
zapping
gqview
# fspot
hello
xchm
nxml
uml
nix
# ocaml
mono
# monodoc
# monodevelop
# hevea
vim
less
file
screen
grub
parted
qtparted
xsel
openssl
mktemp
strace
xauth
qt3
xmltv
mythtv
tetex
ghostscript
mysql
postgresql
postgresql_jdbc
blackdown
apacheAntBlackdown14
jikes
ecj
j2re
jetty
;};
i686FreeBSDPkgs = {inherit (allPackages {system = "i686-freebsd";})
unzip
aterm
subversion
curl
libxml2
libxslt
docbook_xml_dtd_42
docbook_xml_dtd_43
docbook_xml_xslt
nxml
;};
powerpcDarwinPkgs = {inherit (allPackages {system = "powerpc-darwin";})
unzip
autoconf
automake19x
libtool
aterm
subversion
bisonnew
# flexnew
libxml2
libxslt
docbook_xml_dtd_42
docbook_xml_dtd_43
docbook_xml_xslt
nxml
tetex
;};
body = [
i686LinuxPkgs
i686FreeBSDPkgs
powerpcDarwinPkgs
];
}