Reorg guix.scm to define the package explicitly

This commit is contained in:
TakeV 2023-12-13 09:31:32 -05:00
parent 4bc158fa7d
commit c3268f6688
Signed by: TakeV
GPG Key ID: A64F41345C7400AF
1 changed files with 23 additions and 20 deletions

View File

@ -16,23 +16,26 @@
(or (git-predicate (current-source-directory)) (or (git-predicate (current-source-directory))
(const #t))) (const #t)))
(package (define-public guile-docs
(name "guile-guile-docs") (package
(version "0.1") (name "guile-guile-docs")
(source (local-file "." "guile-checkout" (version "0.1")
#:recursive? #t (source (local-file "." "guile-checkout"
#:select? vcs-file?)) #:recursive? #t
(build-system copy-build-system) #:select? vcs-file?))
(arguments `()) (build-system copy-build-system)
(native-inputs (arguments `())
`(("autoconf" ,autoconf) (native-inputs
("automake" ,automake) `(("autoconf" ,autoconf)
("pkg-config" ,pkg-config) ("automake" ,automake)
("texinfo" ,texinfo))) ("pkg-config" ,pkg-config)
(inputs (list guile-3.0 ("texinfo" ,texinfo)))
haunt)) (inputs (list guile-3.0
(propagated-inputs `()) haunt))
(synopsis "") (propagated-inputs `())
(description "") (synopsis "")
(home-page "") (description "")
(license license:gpl3+)) (home-page "")
(license license:gpl3+)))
guile-docs