mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-05-31 22:30:36 +02:00
fix(guix): source guix package from local tarball
This commit is contained in:
parent
195d00dab3
commit
ada618239b
2 changed files with 50 additions and 16 deletions
|
|
@ -1,6 +1,6 @@
|
|||
--- a/gnu/packages/package-management.scm
|
||||
+++ b/gnu/packages/package-management.scm
|
||||
@@ -211,11 +211,4 @@
|
||||
@@ -211,11 +211,8 @@
|
||||
- (source (origin
|
||||
- (method git-fetch)
|
||||
- (uri (git-reference
|
||||
|
|
@ -10,7 +10,11 @@
|
|||
- (base32
|
||||
- "0z1ixlkzsaj978nh57179871xkzbf8zsf10xkcfs2647iznkx7az"))
|
||||
- (file-name (string-append "guix-" version "-checkout"))))
|
||||
+ (source (local-file "@LOCAL_GUIX_CHECKOUT_PATH@"
|
||||
+ #:recursive? #t))
|
||||
+ (source (origin
|
||||
+ (method url-fetch)
|
||||
+ (uri "@LOCAL_GUIX_SOURCE_URL@")
|
||||
+ (sha256
|
||||
+ (base32
|
||||
+ "@LOCAL_GUIX_SOURCE_HASH@"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue