mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
gnu: librecad: Don't use autogenerated tarball.
* gnu/packages/engineering.scm (librecad)[source]: Download using git-fetch.
This commit is contained in:
parent
53d67f4625
commit
26f1c93982
1 changed files with 6 additions and 6 deletions
|
@ -136,14 +136,14 @@ (define-public librecad
|
||||||
(name "librecad")
|
(name "librecad")
|
||||||
(version "2.2.0-rc2")
|
(version "2.2.0-rc2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/LibreCAD/LibreCAD/archive/"
|
(url "https://github.com/LibreCAD/LibreCAD")
|
||||||
version ".tar.gz"))
|
(commit version)))
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0a7fzhxkkn2s3hkgqrw3s3wyspzfla3c5lgbsjyqzvlnrp3anxnm"))))
|
"08cl4935c9vznz9qdw1zgd86rn7hl64zpfayxl07x21bhf53pn24"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:phases
|
'(#:phases
|
||||||
|
|
Loading…
Reference in a new issue