Merge remote-tracking branch 'origin/charli-branch' into vivi
This commit is contained in:
commit
58388e63b3
2 changed files with 42 additions and 27 deletions
|
@ -2,3 +2,10 @@
|
|||
|
||||
#+TITLE: README for Guile Guile-Docs
|
||||
|
||||
Like janetdocs or clojuredocs, but for guile!
|
||||
|
||||
* Developing
|
||||
** Guix
|
||||
Just run src_bash{guix shell -Df guix.scm -m manifest.scm} to get a developer environment.
|
||||
|
||||
manifest.scm is intended for dev tools related programs.
|
||||
|
|
62
guix.scm
62
guix.scm
|
@ -1,30 +1,38 @@
|
|||
(use-modules
|
||||
(guix packages)
|
||||
((guix licenses) #:prefix license:)
|
||||
(guix download)
|
||||
(guix build-system gnu)
|
||||
(gnu packages)
|
||||
(gnu packages autotools)
|
||||
(gnu packages guile)
|
||||
(gnu packages guile-xyz)
|
||||
(gnu packages pkg-config)
|
||||
(gnu packages texinfo))
|
||||
(guix packages)
|
||||
((guix licenses) #:prefix license:)
|
||||
(guix gexp)
|
||||
(guix git-download)
|
||||
(guix utils)
|
||||
(guix build-system copy)
|
||||
(gnu packages)
|
||||
(gnu packages autotools)
|
||||
(gnu packages guile)
|
||||
(gnu packages guile-xyz)
|
||||
(gnu packages pkg-config)
|
||||
(gnu packages texinfo))
|
||||
|
||||
(define vcs-file?
|
||||
(or (git-predicate (current-source-directory))
|
||||
(const #t)))
|
||||
|
||||
(package
|
||||
(name "guile-guile-docs")
|
||||
(version "0.1")
|
||||
(source "./guile-guile-docs-0.1.tar.gz")
|
||||
(build-system gnu-build-system)
|
||||
(arguments `())
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo)))
|
||||
(inputs (list guile-3.0
|
||||
haunt))
|
||||
(propagated-inputs `())
|
||||
(synopsis "")
|
||||
(description "")
|
||||
(home-page "")
|
||||
(license license:gpl3+))
|
||||
(name "guile-guile-docs")
|
||||
(version "0.1")
|
||||
(source (local-file "." "guile-checkout"
|
||||
#:recursive? #t
|
||||
#:select? vcs-file?))
|
||||
(build-system copy-build-system)
|
||||
(arguments `())
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("texinfo" ,texinfo)))
|
||||
(inputs (list guile-3.0
|
||||
haunt))
|
||||
(propagated-inputs `())
|
||||
(synopsis "")
|
||||
(description "")
|
||||
(home-page "")
|
||||
(license license:gpl3+))
|
||||
|
|
Loading…
Reference in a new issue