nixpkgs/pkgs/system/populate-cache.nix
Eelco Visser 4e0ab72b67 Nix expression for ocaml compiler.
- The package has a non-standard build interface;
  fixed with hooks for genericBuild
- The graph library requires x11 and the configure
  script looks in absolute directory paths to find
  X11. Fixed by using patched configure script from
  which the absolute paths have been removed. As
  a consequence the graph library is not build until
  we have X11 support in Nix.


svn path=/nixpkgs/trunk/; revision=1188
2004-07-28 10:08:31 +00:00

76 lines
925 B
Nix

let {
i686LinuxPkgs = {inherit (import ./i686-linux.nix)
coreutils
findutils
diffutils
gnupatch
gnused
gnugrep
gawk
enscript
gnutar
zip
unzip
gzip
bzip2
wget
par2cmdline
cksfv
bittorrent
graphviz
bash
binutils
gnum4
valgrind
texinfo
octavefront
gnumake
bisonnew
flexnew
gcc
gcc34
aterm
strategoxt
ghc
helium
perl
python
libxml2
libxslt
docbook_xml_dtd_42
docbook_xml_dtd_43
docbook_xml_ebnf_dtd
docbook_xml_xslt
subversion
pan
sylpheed
firefox
lynx
MPlayer
MPlayerPlugin
vlc
zapping
gqview
hello
xchm
nxml
uml
nix
ocaml
# hevea
;};
powerpcDarwinPkgs = {inherit (import ./powerpc-darwin.nix)
aterm
subversion
;};
body = [
i686LinuxPkgs
powerpcDarwinPkgs
];
}