summary refs log tree commit diff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-04-29 12:13:16 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-04-29 12:13:16 +0000
commit7d876cc771712bb7e1d735c819cea85c031bb0ed (patch)
treeac8ed85bc973bff2536633e4cf2064902fd148f9
parent78b11908d488ddfab0ebf00a55336dc91a8008ec (diff)
* In `all-packages.nix': use the current system as default for the
  `system' argument.  This is so that importers of Nixpkgs don't have
  to specify a system explicitly anymore.

svn path=/nixpkgs/trunk/; revision=2938
-rw-r--r--maintainers/docs/bugs.txt4
-rw-r--r--pkgs/system/all-packages.nix2
2 files changed, 5 insertions, 1 deletions
diff --git a/maintainers/docs/bugs.txt b/maintainers/docs/bugs.txt
index ed11f65740393..28fff6a825380 100644
--- a/maintainers/docs/bugs.txt
+++ b/maintainers/docs/bugs.txt
@@ -56,3 +56,7 @@ include/X11/IntrinsicP.h:202:25: X11/ObjectP.h: No such file or directory
 
 
 * fgrep/egrep: these fail if grep is not in the $PATH.
+
+
+* teTeX: some programs (such as epstopdf) depend on /usr/bin/env, and
+  expect perl to be in the environment.
diff --git a/pkgs/system/all-packages.nix b/pkgs/system/all-packages.nix
index 382e004212e51..75a824c6db03f 100644
--- a/pkgs/system/all-packages.nix
+++ b/pkgs/system/all-packages.nix
@@ -4,7 +4,7 @@
 # `all-packages-generic.nix' with one of the standard build
 # environments defined in `stdenvs.nix'.
 
-{system}: let {
+{system ? __currentSystem}: let {
   allPackages = import ./all-packages-generic.nix;
 
   stdenvs = import ./stdenvs.nix {inherit system allPackages;};