me
/
guix
Archived
1
0
Fork 0

gnu: ruby-spring: Don't use unstable tarball.

* gnu/packages/rails.scm (ruby-spring)[source]: Download using
git-fetch.
master
Efraim Flashner 2019-12-28 23:00:48 +02:00
parent 3c6128f6f1
commit 7e309d0cb8
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2016 Matthew Jordan <matthewjordandevops@yandex.com>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
@ -32,14 +33,14 @@
(version "1.7.2")
(source
(origin
(method url-fetch)
(uri
(string-append "https://github.com/rails/spring/archive/v"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/rails/spring")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1dd58y0cpsm2izj74yscn0ybfygmgcbbfdw1891g7cq41aai4b35"))))
"0smwrndjmnr7g7jjskw05zin3gh6kx5db6yrkiqi6i9wl5mrn9n5"))))
(build-system ruby-build-system)
(arguments
`(#:test-target "test:unit"