3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: mercury: Selectively import match-lambda from ice9 module.

* gnu/packages/mercury.scm (mercury): Use #:select instead of a
comment string for importing match-lambda.

Signed-off-by: Raghav Gururajan <rg@raghavgururajan.name>
This commit is contained in:
jgart 2022-02-18 01:15:40 -05:00 committed by Raghav Gururajan
parent a814b8ff9c
commit f1d08be7af
Signed by: raghavgururajan
GPG key ID: 5F5816647F8BE551

View file

@ -31,7 +31,7 @@
#:use-module (gnu packages shells) #:use-module (gnu packages shells)
#:use-module (gnu packages bison) #:use-module (gnu packages bison)
#:use-module (gnu packages pkg-config) #:use-module (gnu packages pkg-config)
#:use-module (ice-9 match)) ; match-lambda #:use-module ((ice-9 match) #:select (match-lambda)))
;; NOTE: Mercury uses a tightly coupled fork of BDWGC and ;; NOTE: Mercury uses a tightly coupled fork of BDWGC and
;; libatomic-ops. When updating the package, please check the GitHub ;; libatomic-ops. When updating the package, please check the GitHub