summary refs log tree commit diff
path: root/pkgs/development/tools/parsing
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-08-19 16:55:00 +0000
committerLudovic Courtès <ludo@gnu.org>2010-08-19 16:55:00 +0000
commit1f2cf8991498b785bb627fad6326c07ada8cf1f1 (patch)
treecbee76b4bc17420db719f3d1aa52e4f84b61c829 /pkgs/development/tools/parsing
parentb4cea12d6a2dc6c7ef57a0cb959ed6173a5cfdcf (diff)
GNU Bison 2.4.3.
svn path=/nixpkgs/trunk/; revision=23256
Diffstat (limited to 'pkgs/development/tools/parsing')
-rw-r--r--pkgs/development/tools/parsing/bison/bison-2.4.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/tools/parsing/bison/bison-2.4.nix b/pkgs/development/tools/parsing/bison/bison-2.4.nix
index 245bdad1f929c..61ce9b895dbdd 100644
--- a/pkgs/development/tools/parsing/bison/bison-2.4.nix
+++ b/pkgs/development/tools/parsing/bison/bison-2.4.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, m4}:
 
 stdenv.mkDerivation rec {
-  name = "bison-2.4.2";
+  name = "bison-2.4.3";
 
   src = fetchurl {
     url = "mirror://gnu/bison/${name}.tar.bz2";
-    sha256 = "1f2gmy9bhajrypyz25rqjbz5j024yikr2kaggjjsc15gm4x29ysp";
+    sha256 = "019s3pdzggb71g7p7dgajhh53gh0h6nfl4yrzrs0jzsc37ph4lwk";
   };
 
   buildInputs = [m4];
@@ -32,6 +32,8 @@ stdenv.mkDerivation rec {
     homepage = http://www.gnu.org/software/bison/;
 
     license = "GPLv3+";
+
+    maintainers = [ stdenv.lib.maintainers.ludo ];
   };
 
   passthru = { glrSupport = true; };