gnu: sbcl-rt: Fix source, home-page and license.

* gnu/packages/lisp-xyz.scm (sbcl-rt)[source]: Use main repository instead of
  Quicklisp archive.
  [home-page]: Link to CLiki page.
  [license]: Source code indicates MIT license.
This commit is contained in:
Guillaume Le Vaillant 2020-02-15 10:27:25 +01:00
parent f36ec871d2
commit e81b0719fc
No known key found for this signature in database
GPG key ID: 6BE8208ADF21FE3F

View file

@ -1596,23 +1596,26 @@ (define-public ecl-cl-fad
(sbcl-package->ecl-package sbcl-cl-fad)) (sbcl-package->ecl-package sbcl-cl-fad))
(define-public sbcl-rt (define-public sbcl-rt
(package (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
(name "sbcl-rt") (revision "1"))
(version "1990.12.19") (package
(source (name "sbcl-rt")
(origin (version (git-version "1990.12.19" revision commit))
(method url-fetch) (source
(uri (string-append "http://beta.quicklisp.org/archive/rt/2010-10-06/rt-" (origin
"20101006-git" ".tgz")) (method git-fetch)
(sha256 (uri (git-reference
(base32 (url "http://git.kpe.io/rt.git")
"1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v")))) (commit commit)))
(build-system asdf-build-system/sbcl) (file-name (git-file-name name version))
(synopsis "MIT Regression Tester") (sha256
(description (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
"RT provides a framework for writing regression test suites.") (build-system asdf-build-system/sbcl)
(home-page "https://github.com/sharplispers/nibbles") (synopsis "MIT Regression Tester")
(license license:unlicense))) (description
"RT provides a framework for writing regression test suites.")
(home-page "https://www.cliki.net/rt")
(license license:expat))))
(define-public cl-rt (define-public cl-rt
(sbcl-package->cl-source-package sbcl-rt)) (sbcl-package->cl-source-package sbcl-rt))