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+)))
lass='msg-avail'>...* gnu/packages/bioinformatics.scm (libgff)[license]: Use HTTPS. * gnu/packages/boost.scm (boost-sync)[license]: Likewise. (boost)[license]: Likewise. [home-page]: Likewise, and use canonical ‘www’ subdomain. Tobias Geerinckx-Rice 2018-05-01gnu: boost: Update to 1.67.0....* gnu/packages/boost.scm (boost): Update to 1.67.0. Tobias Geerinckx-Rice 2018-04-10gnu: boost: Fix ICU support....* gnu/packages/patches/boost-fix-icu-build.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/boost.scm (boost)[source]: Add the patch. [arguments]: In the custom configure phase, pass --with-icu=[...] to ./bootstrap.sh Mark H Weaver 2018-03-29Merge branch 'master' into core-updatesMarius Bakke 2018-03-22gnu: Add boost-sync....* gnu/packages/boost.scm (boost-sync): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxim Cournoyer 2018-03-18gnu: boost: Simplify phases....* gnu/packages/boost.scm (boost)[arguments]: Remove unneeded '#t's from 'configure', 'build', and 'install' phases. Mark H Weaver 2018-03-15gnu: Remove boost-1.66....* gnu/packages/boost.scm (boost-1.66): Remove variable. * gnu/packages/storage.scm (ceph)[inputs]: Replace boost-1.66 with boost. Ricardo Wurmus 2018-03-15gnu: boost: Remove bootstrap phase....* gnu/packages/boost.scm (boost)[arguments]: Remove bootstrap phase. Ricardo Wurmus 2018-03-14Merge branch 'master' into core-updatesRicardo Wurmus 2018-03-04gnu: Add boost@1.66.0....* gnu/packages/boost.scm (boost-1.66): New public variable. Marius Bakke 2018-02-19gnu: boost: Update to 1.66.0....* gnu/packages/boost.scm (boost): Update to 1.66.0. [arguments]: Replace system* with invoke. [home-page]: Update URI. Arun Isaac 2018-01-19gnu: mdds: Update to 1.3.1....* gnu/packages/boost.scm (mdds): Update to 1.3.1. Tobias Geerinckx-Rice 2017-06-11gnu: boost: Add ICU support....* gnu/packages/boost.scm (boost)[inputs]: Add icu4c. Leo Famulari 2017-04-26gnu: boost: Update to 1.64.0....* gnu/packages/boost.scm (boost): Update to 1.64.0. Marius Bakke 2017-03-27gnu: mdds: Upgrade to 1.2.2....* gnu/packages/boost.scm (mdds): Upgrade to 1.2.2. Thomas Danckaert 2017-01-17gnu: boost: Update to 1.63.0....* gnu/packages/boost.scm (boost): Update to 1.63.0. Danny Milosavljevic 2016-12-14gnu: mdds: Replace dead Google Code home-page....* gnu/packages/boost.scm (mdds)[home-page]: Update it. Tobias Geerinckx-Rice 2016-09-22gnu: boost: Add -j for build....* gnu/packages/boost.scm (boost)[arguments]: Add -j flag for build phase. Eric Bavier 2016-09-22gnu: boost: Upgrade to 1.61.0....* gnu/packages/boost.scm (boost): Upgrade to 1.61.0 * gnu/packages/databases.scm (mysql)[arguments]: Compute boost minor version for substitution. Eric Bavier 2016-08-04Merge branch 'core-updates'Mark H Weaver 2016-08-04Revert "Merge branch 'core-updates'"...This reverts commit 455859a50f88f625d13fc2f304111f02369b366b. Mark H Weaver