aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/bison.scm
blob: 71de47762d1d7d64e46708c8de4bd85e192d387d (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2015 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages bison)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages m4)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages flex)
  #:use-module (srfi srfi-1))

(define-public bison
  (package
    (name "bison")
    (version "3.0.5")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://gnu/bison/bison-"
                          version ".tar.xz"))
      (sha256
       (base32
        "0f7kjygrckkx8vas2nm673592jif0a9mw5g8207f6hj6h4pfyp07"))))
    (build-system gnu-build-system)
    (native-inputs `(("perl" ,perl)
                     ;; m4 is not present in PATH when cross-building.
                     ("m4" ,m4)))
    (inputs `(("flex" ,flex)))
    (propagated-inputs `(("m4" ,m4)))
    (home-page "https://www.gnu.org/software/bison/")
    (synopsis "Parser generator")
    (description
     "GNU Bison is a general-purpose parser generator.  It can build a
deterministic or generalized LR parser from an annotated, context-free
grammar.  It is versatile enough to have many applications, from parsers for
simple tools through complex programming languages.")
    (license gpl3+)))
'/guix/commit/configure.ac?id=bd6ff5b42b9daaea9a0786892d4327a30013a992'>build: Bump version number....Ricardo Wurmus 2016-10-25build: 'guilemoduledir' honors $GUILE_EFFECTIVE_VERSION....Ludovic Courtès 2016-09-20build: Allow builds with Guile 2.2....Ludovic Courtès 2016-09-07Add Zsh completion file....Eric Le Bihan 2016-07-29Merge branch 'master' into core-updatesMark H Weaver 2016-07-29build: Bump version number....Ludovic Courtès 2016-07-20Merge branch 'master' into core-updatesLudovic Courtès 2016-07-19Add (guix zlib)....Ludovic Courtès 2016-06-23build: Remove unneeded conditionals for (guix build syscalls)....Manolis Ragkousis 2016-04-15build: Move environment '.in' scripts to 'build-aux' directory....Mathieu Lirzin 2016-03-24build: Bump version number....Ludovic Courtès 2016-01-12build: 'make check' errors out if file name limits would be hit....Ludovic Courtès 2016-01-05build: Bump version number....Ludovic Courtès 2015-12-09build: Always check for gzip/bzip2/xz....Ludovic Courtès 2015-10-20build: Set DOT_USER_PROGRAM for Emacs interface....Alex Kost 2015-10-09build: Fix libgcrypt detection on FHS systems....Ludovic Courtès 2015-10-06build: Automatically determine libgcrypt's file name....Ludovic Courtès 2015-09-25build: Bump version number....Ludovic Courtès 2015-08-30build: Produce 'guix-config' instead of using compile-time tricks....Mathieu Lirzin 2015-08-27build: Do not build (guix build syscalls) if 'mount' is missing from libc....Ludovic Courtès 2015-06-14doc: Move most 'HACKING' informations into the manual....Mathieu Lirzin 2015-06-03build: Bump version number....Ludovic Courtès 2015-06-01build: Build and install manual pages....Ludovic Courtès 2015-05-10build: Require Guile >= 2.0.7....Ludovic Courtès 2015-04-14build: Silence warnings about 'make' portability....Ludovic Courtès 2015-04-09Add Bash completion file....Ludovic Courtès 2015-04-08build: Enable silent rules by default....Ludovic Courtès 2015-03-19build: Detect lack of guile.m4 at autoconf time....Ludovic Courtès 2015-02-26build: Bump version number....Ludovic Courtès 2015-02-24build: Reject or warn against file name length limit overruns....Ludovic Courtès 2015-01-23build: Change version to 0.8.1....Ludovic Courtès 2014-12-02emacs: Move profiles code to "guix-profiles.el.in"....Alex Kost 2014-11-25build: Bump version number....Ludovic Courtès