From 4144eb195c28cbfd1ca2a131cf4b64afcad713ae Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Mon, 27 Jan 2020 00:47:57 +0100 Subject: gnu: sicp: Remove unused module import. * gnu/packages/scheme.scm (sicp)[arguments]: Do not import (srfi srfi-1). --- gnu/packages/scheme.scm | 2 -- 1 file changed, 2 deletions(-) (limited to 'gnu/packages/scheme.scm') diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index b0da2ac36b..c765125b85 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -638,12 +638,10 @@ (define-public sicp ("texinfo" ,texinfo))) (arguments `(#:modules ((guix build utils) - (srfi srfi-1) (srfi srfi-26)) #:builder (begin (use-modules (guix build utils) - (srfi srfi-1) (srfi srfi-26)) (let ((gzip (assoc-ref %build-inputs "gzip")) (source (assoc-ref %build-inputs "source")) -- cgit v1.2.3 From 150c38c2eda13537a01f481276a0750bb1c49678 Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 27 Jan 2020 15:04:28 +0100 Subject: gnu: sicp: Do not import module from the host Guile. This is a followup to 4144eb195c28cbfd1ca2a131cf4b64afcad713ae and 5e61de242156cdb3314abac168d9682ca7a4c28f. * gnu/packages/scheme.scm (sicp)[arguments]: Remove (srfi srfi-26) from #:modules. --- gnu/packages/scheme.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/packages/scheme.scm') diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm index c765125b85..1009896a70 100644 --- a/gnu/packages/scheme.scm +++ b/gnu/packages/scheme.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2016, 2018 Ludovic Courtès +;;; Copyright © 2013, 2014, 2015, 2016, 2018, 2020 Ludovic Courtès ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer ;;; Copyright © 2015, 2016 Federico Beffa ;;; Copyright © 2016 Ricardo Wurmus @@ -637,8 +637,7 @@ (define-public sicp ("source" ,source) ("texinfo" ,texinfo))) (arguments - `(#:modules ((guix build utils) - (srfi srfi-26)) + `(#:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils) -- cgit v1.2.3