summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2004-09-22 08:49:22 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2004-09-22 08:49:22 +0000
commitf3193ba5bc9f91c7afa6fc33192c5922143aa86a (patch)
treec37e266f405907935c170245a0d5f67acc21f201 /pkgs/system/all-packages-generic.nix
parent35ed8aac810567f0ba9b19846f320b42f024c603 (diff)
downloadnixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar.gz
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar.bz2
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar.lz
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar.xz
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.tar.zst
nixpkgs-f3193ba5bc9f91c7afa6fc33192c5922143aa86a.zip
* Graphviz updated to 1.12.
* In all-packages-generic.nix: yacc alias for bison.

svn path=/nixpkgs/trunk/; revision=1488
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index f14bccc22cc..e6766978e2d 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -122,7 +122,7 @@ rec {
   };
 
   graphviz = (import ../tools/graphics/graphviz) {
-    inherit fetchurl stdenv libpng libjpeg expat x11;
+    inherit fetchurl stdenv libpng libjpeg expat x11 yacc;
     inherit (xlibs) libXaw;
   };
 
@@ -229,19 +229,19 @@ rec {
     m4 = gnum4;
   };
 
+  yacc = bison;
+
   bisonnew = (import ../development/tools/parsing/bison/bison-new.nix) {
     inherit fetchurl stdenv;
     m4 = gnum4;
   };
 
   flex = (import ../development/tools/parsing/flex) {
-    inherit fetchurl stdenv;
-    yacc = bison;
+    inherit fetchurl stdenv yacc;
   };
 
   flexnew = (import ../development/tools/parsing/flex/flex-new.nix) {
-    inherit fetchurl stdenv;
-    yacc = bison;
+    inherit fetchurl stdenv yacc;
     m4 = gnum4;
   };