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
|
#+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
|
(use-modules
|
||||||
(guix packages)
|
(guix packages)
|
||||||
((guix licenses) #:prefix license:)
|
((guix licenses) #:prefix license:)
|
||||||
(guix download)
|
(guix gexp)
|
||||||
(guix build-system gnu)
|
(guix git-download)
|
||||||
(gnu packages)
|
(guix utils)
|
||||||
(gnu packages autotools)
|
(guix build-system copy)
|
||||||
(gnu packages guile)
|
(gnu packages)
|
||||||
(gnu packages guile-xyz)
|
(gnu packages autotools)
|
||||||
(gnu packages pkg-config)
|
(gnu packages guile)
|
||||||
(gnu packages texinfo))
|
(gnu packages guile-xyz)
|
||||||
|
(gnu packages pkg-config)
|
||||||
|
(gnu packages texinfo))
|
||||||
|
|
||||||
|
(define vcs-file?
|
||||||
|
(or (git-predicate (current-source-directory))
|
||||||
|
(const #t)))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
(name "guile-guile-docs")
|
(name "guile-guile-docs")
|
||||||
(version "0.1")
|
(version "0.1")
|
||||||
(source "./guile-guile-docs-0.1.tar.gz")
|
(source (local-file "." "guile-checkout"
|
||||||
(build-system gnu-build-system)
|
#:recursive? #t
|
||||||
(arguments `())
|
#:select? vcs-file?))
|
||||||
(native-inputs
|
(build-system copy-build-system)
|
||||||
`(("autoconf" ,autoconf)
|
(arguments `())
|
||||||
("automake" ,automake)
|
(native-inputs
|
||||||
("pkg-config" ,pkg-config)
|
`(("autoconf" ,autoconf)
|
||||||
("texinfo" ,texinfo)))
|
("automake" ,automake)
|
||||||
(inputs (list guile-3.0
|
("pkg-config" ,pkg-config)
|
||||||
haunt))
|
("texinfo" ,texinfo)))
|
||||||
(propagated-inputs `())
|
(inputs (list guile-3.0
|
||||||
(synopsis "")
|
haunt))
|
||||||
(description "")
|
(propagated-inputs `())
|
||||||
(home-page "")
|
(synopsis "")
|
||||||
(license license:gpl3+))
|
(description "")
|
||||||
|
(home-page "")
|
||||||
|
(license license:gpl3+))
|
||||||
|
|
Loading…
Reference in a new issue