summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2005-10-26 21:30:49 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2005-10-26 21:30:49 +0000
commit3f5a0c251ad53f159667f7fb620d82fefe175382 (patch)
tree36b78419aef863192b542c547154067240126a94 /pkgs/development/tools/parsing
parent5297aa3a43163b057c925d7a876cfc49c0b5757e (diff)
downloadnixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar.gz
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar.bz2
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar.lz
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar.xz
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.tar.zst
nixpkgs-3f5a0c251ad53f159667f7fb620d82fefe175382.zip
add bison 2.1
svn path=/nixpkgs/trunk/; revision=4150
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/bison/bison-2.1.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/bison/bison-2.1.nix b/pkgs/development/tools/parsing/bison/bison-2.1.nix
new file mode 100644
index 00000000000..cfeb6f53afd
--- /dev/null
+++ b/pkgs/development/tools/parsing/bison/bison-2.1.nix
@@ -0,0 +1,14 @@
+{stdenv, fetchurl, m4}:
+
+assert m4 != null;
+
+stdenv.mkDerivation {
+  name = "bison-2.1";
+  src = fetchurl {
+    url = ftp://ftp.nluug.nl/pub/gnu/bison/bison-2.1.tar.bz2;
+    md5 = "ef3110077462b1140b2ae612626e8486";
+  };
+  buildInputs = [m4];
+} // {
+  glrSupport = true;
+}