nixpkgs/pkgs/system/populate-cache.nix
Martin Bravenboer d785903b05 * Removed MythTV from cache
* Make the jing library available



svn path=/nixpkgs/trunk/; revision=4122
2005-10-24 14:01:08 +00:00

163 lines
2.1 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
kernel
# 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
apacheHttpd
subversion
darcs
pan
sylpheed
firefoxWrapper
firefoxBetaWrapper
thunderbird
lynx
gaim
MPlayer
MPlayerPlugin
vlc
xineUI
xmms
zapping
gqview
inkscape
batik
# fspot
hello
xchm
nxml
uml
nix
# ocaml
mono
# monodoc
# monodevelop
# hevea
vim
emacs
less
file
screen
grub
parted
qtparted
xsel
openssl
mktemp
strace
xauth
qt3
xmltv
tetex
ghostscript
mysql
postgresql
postgresql_jdbc
blackdown
apacheAntBlackdown14
jikes
ecj
jre
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
];
}