gnu: sassc: Fix build.
* gnu/packages/web.scm (sassc)[arguments]: Delete bootstrap phase; let phase end on boolean. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
3d53869e30
commit
68464ea259
|
@ -1281,12 +1281,14 @@ minimum to provide high performance operation.")
|
||||||
#:tests? #f
|
#:tests? #f
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
|
(delete 'bootstrap)
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-after 'unpack 'unpack-libsass-and-set-path
|
(add-after 'unpack 'unpack-libsass-and-set-path
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(invoke "tar" "xvf" (assoc-ref inputs "libsass"))
|
(invoke "tar" "xvf" (assoc-ref inputs "libsass"))
|
||||||
(setenv "SASS_LIBSASS_PATH"
|
(setenv "SASS_LIBSASS_PATH"
|
||||||
(string-append (getcwd) "/libsass-" ,version)))))))
|
(string-append (getcwd) "/libsass-" ,version))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libsass" ,libsass)))
|
`(("libsass" ,libsass)))
|
||||||
(synopsis "CSS pre-processor")
|
(synopsis "CSS pre-processor")
|
||||||
|
|
Loading…
Reference in New Issue