rekado pushed a commit to branch wip-gnome-upgrades
in repository guix.
commit f54b2c74c87e06336c6412c33331bfbeb8eb5d38
Author: Ricardo Wurmus <[email protected]>
Date: Sun Aug 5 13:03:09 2018 +0200
gnu: sassc: Fix build.
* gnu/packages/web.scm (sassc)[arguments]: Delete bootstrap phase; let phase
end on boolean.
---
gnu/packages/web.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7588ade..fbe2160 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -1250,12 +1250,14 @@ minimum to provide high performance operation.")
#:tests? #f
#:phases
(modify-phases %standard-phases
+ (delete 'bootstrap)
(delete 'configure)
(add-after 'unpack 'unpack-libsass-and-set-path
(lambda* (#:key inputs #:allow-other-keys)
(invoke "tar" "xvf" (assoc-ref inputs "libsass"))
(setenv "SASS_LIBSASS_PATH"
- (string-append (getcwd) "/libsass-" ,version)))))))
+ (string-append (getcwd) "/libsass-" ,version))
+ #t)))))
(inputs
`(("libsass" ,libsass)))
(synopsis "CSS pre-processor")