mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 05:39:41 -05:00
gnu: Add stagit.
* gnu/packages/version-control.scm (stagit): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
369387b65d
commit
1062f2451f
1 changed files with 27 additions and 0 deletions
|
@ -1219,3 +1219,30 @@ (define-public fossil
|
|||
a built-in wiki, built-in file browsing, built-in tickets system, etc.")
|
||||
(license (list license:public-domain ;src/miniz.c, src/shell.c
|
||||
license:bsd-2))))
|
||||
|
||||
(define-public stagit
|
||||
(package
|
||||
(name "stagit")
|
||||
(version "0.4")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "http://dl.2f30.org/releases/"
|
||||
name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0z5r06wqrfnsz24ci4hjqbd62svclvhkgzaq9npsyjcp6jnf7izc"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No tests
|
||||
#:make-flags (list "CC=gcc"
|
||||
(string-append "PREFIX=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)))) ; No configure script
|
||||
(inputs
|
||||
`(("libgit2" ,libgit2)))
|
||||
(home-page "http://2f30.org")
|
||||
(synopsis "Static git page generator")
|
||||
(description "Stagit creates static pages for git repositories, the results can
|
||||
be served with a HTTP file server of your choice.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue