me
/
guix
Archived
1
0
Fork 0

gnu: Add gawk-mpfr.

* gnu/packages/gawk.scm (gawk-mpfr): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Paul A. Patience 2022-07-04 04:59:30 +00:00 committed by Ludovic Courtès
parent f5efde47f7
commit 2e5c519b3f
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 10 additions and 0 deletions

View File

@ -3,6 +3,7 @@
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2022 Paul A. Patience <paul@apatience.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -24,6 +25,7 @@
#:use-module (gnu packages)
#:use-module (gnu packages bash)
#:use-module (gnu packages libsigsegv)
#:use-module (gnu packages multiprecision)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system gnu))
@ -95,6 +97,14 @@ Gawk features many extensions beyond the traditional implementation,
including network access, sorting, and large libraries.")
(license license:gpl3+)))
;; Separate from gawk to facilitate bootstrapping.
(define-public gawk-mpfr
(package/inherit gawk
(name "gawk-mpfr")
(inputs
(modify-inputs (package-inputs gawk)
(prepend mpfr)))))
(define-public mawk
(package
(name "mawk")