diff options
author | jgart <jgart@dismail.de> | 2022-02-18 01:15:40 -0500 |
---|---|---|
committer | Raghav Gururajan <rg@raghavgururajan.name> | 2022-04-27 22:34:35 -0400 |
commit | f1d08be7af45d436fa2e8373bad50aa8c5401050 (patch) | |
tree | 61cff2746d9a3d5fe9f0821f76ed2830d87f8756 | |
parent | a814b8ff9c27f4411137839e3ad28fb6a8dc8467 (diff) | |
download | guix-f1d08be7af45d436fa2e8373bad50aa8c5401050.tar.gz |
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>
-rw-r--r-- | gnu/packages/mercury.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/mercury.scm b/gnu/packages/mercury.scm index c87e65fdd1..1c7f5c5f55 100644 --- a/gnu/packages/mercury.scm +++ b/gnu/packages/mercury.scm @@ -31,7 +31,7 @@ #:use-module (gnu packages shells) #:use-module (gnu packages bison) #: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 ;; libatomic-ops. When updating the package, please check the GitHub |