Archived
1
0
Fork 0

gnu: squirrel: Build from a source archive instead of a Git checkout.

* gnu/packages/squirrel.scm (squirrel)[source]: Use url-fetch and adjust the
source URL accordingly.
This commit is contained in:
Kei Kebreau 2019-05-24 15:31:58 -04:00
parent dbe533292b
commit 03b630686f
No known key found for this signature in database
GPG key ID: E6A5EE3C19467A0D

View file

@ -20,36 +20,36 @@
#:use-module (gnu packages) #:use-module (gnu packages)
#:use-module (gnu packages cmake) #:use-module (gnu packages cmake)
#:use-module (guix build-system cmake) #:use-module (guix build-system cmake)
#:use-module (guix git-download) #:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build utils) #:use-module (guix build utils)
#:use-module (guix packages) #:use-module (guix packages)
#:use-module (guix utils)) #:use-module (guix utils))
(define-public squirrel (define-public squirrel
(let ((commit "51137b84e66c4d526809fd8a59f4ba1d38138c76")) (package
(package (name "squirrel")
(name "squirrel") (version "3.1")
(version "3.1") (source (origin
(source (origin (method url-fetch)
(method git-fetch) (uri (string-append "mirror://sourceforge/squirrel/squirrel3/"
(uri (git-reference "squirrel " version " stable/squirrel_"
(url "https://github.com/albertodemichelis/squirrel.git") (string-join (string-split version #\.) "_")
(commit commit))) "_stable.tar.gz"))
(file-name (string-append name "-" version "-checkout")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0vbiv1q3qcy2vj8y0b9a2ckswl9ld398n3jnxijvwddrjgya5zav")))) "1jyh1523zrrnh9swanfrda0s14mvwc9431dh07g0nx74hbxsfia8"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:tests? #f)) ; no tests '(#:tests? #f)) ; no tests
(native-inputs (native-inputs
`(("cmake" ,cmake))) `(("cmake" ,cmake)))
(home-page "https://squirrel-lang.org/") (home-page "https://squirrel-lang.org/")
(synopsis "High level imperative, object-oriented programming language") (synopsis "High level imperative, object-oriented programming language")
(description (description
"Squirrel is a high level imperative, object-oriented programming "Squirrel is a high level imperative, object-oriented programming
language, designed to be a light-weight scripting language that fits in the language, designed to be a light-weight scripting language that fits in the
size, memory bandwidth, and real-time requirements of applications like video size, memory bandwidth, and real-time requirements of applications like video
games.") games.")
(license license:expat)))) (license license:expat)))