diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-17 22:39:09 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-17 23:32:34 +0100 |
commit | 3497086b6b4f2b39f7e74c0fe824abc7c6f1d118 (patch) | |
tree | 0ce14fe12bb5b5fd782e07e9f56892ee5c52ae00 /gnu/packages/web.scm | |
parent | 9a50f47c49a98318828aa0130fce436e795175d5 (diff) | |
download | guix-3497086b6b4f2b39f7e74c0fe824abc7c6f1d118.tar guix-3497086b6b4f2b39f7e74c0fe824abc7c6f1d118.tar.gz |
gnu: Use HTTPS for sass-lang.com everywhere.
* gnu/packages/ruby.scm (ruby-sass)[home-page]: Use HTTPS.
* gnu/packages/web.scm (sassc)[home-page]: Likewise.
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 5b457ccc5b..904db3828b 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1565,8 +1565,7 @@ stylesheets, you'll need to use another program that uses this library, `(#:make-flags (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out"))) - ;; I don't believe sassc contains any tests - #:tests? #f + #:tests? #f ; no test suite #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-Makefile @@ -1579,9 +1578,9 @@ stylesheets, you'll need to use another program that uses this library, (("install: libsass-install-\\$\\(BUILD\\) \\\\") "install: \\")) #t)) - ;; This phase fails for some reason + ;; This phase fails for some reason. (delete 'bootstrap) - ;; There is no configure script + ;; There is no configure script. (delete 'configure) (add-before 'build 'setup-environment (lambda _ @@ -1593,7 +1592,7 @@ stylesheets, you'll need to use another program that uses this library, (synopsis "CSS pre-processor") (description "SassC is a compiler written in C for the CSS pre-processor language known as SASS.") - (home-page "http://sass-lang.com/libsass") + (home-page "https://sass-lang.com/libsass") (license license:expat))) |