Archived
1
0
Fork 0

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.
This commit is contained in:
Tobias Geerinckx-Rice 2020-01-17 22:39:09 +01:00
parent 9a50f47c49
commit 3497086b6b
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79
2 changed files with 5 additions and 6 deletions

View file

@ -7755,7 +7755,7 @@ the @file{spec} directory.")
(native-inputs (native-inputs
`(("ruby-sass-spec" ,ruby-sass-spec) `(("ruby-sass-spec" ,ruby-sass-spec)
("ruby-mathn" ,ruby-mathn))) ("ruby-mathn" ,ruby-mathn)))
(home-page "http://sass-lang.com/") (home-page "https://sass-lang.com/")
(synopsis "CSS extension language") (synopsis "CSS extension language")
(description "Sass is a CSS extension language. It extends CSS with (description "Sass is a CSS extension language. It extends CSS with
features that don't exist yet like variables, nesting, mixins and inheritance.") features that don't exist yet like variables, nesting, mixins and inheritance.")

View file

@ -1565,8 +1565,7 @@ stylesheets, you'll need to use another program that uses this library,
`(#:make-flags `(#:make-flags
(list "CC=gcc" (list "CC=gcc"
(string-append "PREFIX=" (assoc-ref %outputs "out"))) (string-append "PREFIX=" (assoc-ref %outputs "out")))
;; I don't believe sassc contains any tests #:tests? #f ; no test suite
#:tests? #f
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(add-after 'unpack 'patch-Makefile (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: libsass-install-\\$\\(BUILD\\) \\\\")
"install: \\")) "install: \\"))
#t)) #t))
;; This phase fails for some reason ;; This phase fails for some reason.
(delete 'bootstrap) (delete 'bootstrap)
;; There is no configure script ;; There is no configure script.
(delete 'configure) (delete 'configure)
(add-before 'build 'setup-environment (add-before 'build 'setup-environment
(lambda _ (lambda _
@ -1593,7 +1592,7 @@ stylesheets, you'll need to use another program that uses this library,
(synopsis "CSS pre-processor") (synopsis "CSS pre-processor")
(description "SassC is a compiler written in C for the CSS pre-processor (description "SassC is a compiler written in C for the CSS pre-processor
language known as SASS.") language known as SASS.")
(home-page "http://sass-lang.com/libsass") (home-page "https://sass-lang.com/libsass")
(license license:expat))) (license license:expat)))