Add propogated-inputs: tar, unzip, and coreutils

This commit is contained in:
TakeV 2023-07-08 20:43:02 -07:00
parent 5db1ff75eb
commit f971dece37
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
2 changed files with 6 additions and 9 deletions

View File

@ -7,6 +7,8 @@
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
#:use-module (gnu packages compression)
#:use-module (gnu packages guile)
#:use-module (gnu packages guile-xyz)
#:use-module (gnu packages package-management)
@ -75,7 +77,10 @@
(native-inputs (list autoconf automake pkg-config texinfo guile-hall))
(inputs (list guile-3.0))
(propagated-inputs (list guix
guile-config))
guile-config
tar
unzip
coreutils))
(synopsis "")
(description "")
(home-page "")

View File

@ -30,11 +30,3 @@ Downloads the source code of a package and extracts it to a directory"
((directory-exists? package-source-dir) (format #t "I think this is a directory: ~a" package-source-dir))
(else (format #t "I dunno what this is: ~a" package-source-dir)))))
; If file
;; If *.tar.[gr/xz/bz] then decompress to project directory
;; If .zip then above but different program to decompress is used
; If directory
;; Recursively copy dir to project directory
;; After, chmod everything to be writable