aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/cobol.scm
blob: f8f35928a735cb91a84eee17b61111db2a3b6b1a (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
56
57
58
59
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; 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 cobol)
  #:use-module (gnu packages)
  #:use-module (guix build-system gnu)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (gnu packages databases)
  #:use-module (gnu packages multiprecision)
  #:use-module (gnu packages ncurses))

(define-public gnucobol
  (package
    (name "gnucobol")
    (version "2.2")
    (source
      (origin
        (method url-fetch)
        (uri (string-append
               "mirror://gnu/gnucobol/gnucobol-"
               version ".tar.xz"))
        (sha256
         (base32
          "1814s1n95xax2dz938cf4fkcp0q94nkj1gjbdblbzpk9q92zq66w"))))
    (arguments
     '(#:configure-flags (list (string-append "LDFLAGS=-Wl,-rpath="
                                              (assoc-ref %outputs "out")
                                              "/lib"))))
    (inputs
     `(("bdb" ,bdb)
       ("gmp" ,gmp)
       ("ncurses" ,ncurses)))
    (build-system gnu-build-system)
    (home-page "https://savannah.gnu.org/projects/gnucobol/")
    (synopsis "A modern COBOL compiler")
    (description "GnuCOBOL is a free, modern COBOL compiler.  GnuCOBOL
implements a substantial part of the COBOL 85, COBOL 2002 and COBOL 2014
standards and X/Open COBOL, as well as many extensions included in other
COBOL compilers (IBM COBOL, MicroFocus COBOL, ACUCOBOL-GT and others).
GnuCOBOL translates COBOL into C and compiles the translated code using
a native C compiler.")
    (license gpl3+)))
u: umockdev: Update to 0.14.3....Tobias Geerinckx-Rice 2020-09-05Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner 2020-08-18gnu: Add pedansee....Raghav Gururajan 2020-08-18gnu: Add mutest....Raghav Gururajan 2020-08-09gnu: python-pytest-flakes: Update to 4.0.1....Tobias Geerinckx-Rice 2020-08-09gnu: umockdev: Update to 0.14.2....Tobias Geerinckx-Rice 2020-08-07Revert "gnu: python-pyfakefs: Update to 4.1.0."...Efraim Flashner 2020-08-07gnu: python-pyfakefs: Update to 4.1.0....Efraim Flashner 2020-08-04gnu: catch-framework2: Update to 2.13.0....Efraim Flashner 2020-07-30gnu: Add python-hypothesmith....Tanguy Le Carrour 2020-07-30gnu: Add python-hypothesis-5.23....Tanguy Le Carrour 2020-07-25gnu: check: Update to 0.15.1....Marius Bakke 2020-07-25gnu: python-coverage: Update to 5.2.1....Marius Bakke 2020-07-24Merge branch 'master' into stagingMarius Bakke 2020-07-19gnu: python2-pytest: Update to 4.6.11....Efraim Flashner 2020-07-16gnu: Use HTTPS for github.com (and subdomains) home pages....Tobias Geerinckx-Rice 2020-07-12gnu: Remove ".git" from "https://github/…/….git"....Ludovic Courtès 2020-06-26gnu: Add clitest....Marius Bakke 2020-06-29gnu: python-coverage: Update home page....Tobias Geerinckx-Rice 2020-06-28gnu: doctest: Update to 2.4.0....Marius Bakke 2020-06-23gnu: python-pytest-flakes: Update to 4.0.0....Ricardo Wurmus 2020-06-22gnu: Add python-pytest-lazy-fixture....Vinicius Monego 2020-06-13gnu: check@0.12: Do not inherit replacements from check....Marius Bakke 2020-06-09gnu: python-pylint: Update to 2.5.3....Tobias Geerinckx-Rice 2020-06-02gnu: python-parameterized: Update to 0.7.4....Tobias Geerinckx-Rice 2020-05-31gnu: python-pylint: Add missing propagated input....Tobias Geerinckx-Rice 2020-05-31Revert "Revert "gnu: python-pylint: Udpate to 2.5.2.""...Tobias Geerinckx-Rice 2020-05-30Revert "gnu: python-pylint: Udpate to 2.5.2."...Marius Bakke 2020-05-30gnu: doctest: Update to 2.3.8....Tobias Geerinckx-Rice 2020-05-30gnu: python-pylint: Udpate to 2.5.2....Ryan Prior 2020-05-23gnu: umockdev: Update to 0.14.1....Brice Waegeneire 2020-05-23gnu: umockdev: Add 'gobject-introspection'....Brice Waegeneire