guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] gnu: Add stagit.


From: ng0
Subject: Re: [PATCH] gnu: Add stagit.
Date: Fri, 12 Aug 2016 08:39:41 +0000

ng0 <address@hidden> writes:

> [ Unknown signature status ]
> Same as sic, I am not sure if the description could be extended. This is
> what I could come up with.
>
> If you have trouble testing it, consider this commit which is not in 0.4
> release:
> http://git.2f30.org/stagit/commit/44a49f51db565cbfc31f31393d8dcdec1cdc8167.html

Should this go into gnu/packages/suckless.scm then? Seems more
appropriate after the last comments on suckless.scm.

> From d2a2dd0b6f831f8a1ecc09794c44d6ea2b3992b5 Mon Sep 17 00:00:00 2001
> From: ng0 <address@hidden>
> Date: Wed, 10 Aug 2016 10:04:29 +0000
> Subject: [PATCH] gnu: Add stagit.
>
> * gnu/packages/version-control.scm (stagit): New variable.
> ---
>  gnu/packages/version-control.scm | 30 +++++++++++++++++++++++++++++-
>  1 file changed, 29 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/version-control.scm 
> b/gnu/packages/version-control.scm
> index 767715d..b12c53a 100644
> --- a/gnu/packages/version-control.scm
> +++ b/gnu/packages/version-control.scm
> @@ -9,6 +9,7 @@
>  ;;; Copyright © 2015, 2016 Efraim Flashner <address@hidden>
>  ;;; Copyright © 2015 Kyle Meyer <address@hidden>
>  ;;; Copyright © 2015 Ricardo Wurmus <address@hidden>
> +;;; Coypright © 2016 ng0 <address@hidden>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -29,7 +30,7 @@
>    #:use-module ((guix licenses)
>                  #:select (asl2.0 bsd-2 bsd-3
>                            gpl1+ gpl2 gpl2+ gpl3+ lgpl2.1
> -                          public-domain x11-style))
> +                          public-domain x11-style expat))
>    #:use-module (guix utils)
>    #:use-module (guix packages)
>    #:use-module (guix download)
> @@ -1250,3 +1251,30 @@ access and administration over HTTP CGI or via a 
> built-in HTTP server.  It has
>  a built-in wiki, built-in file browsing, built-in tickets system, etc.")
>      (license (list public-domain        ;src/miniz.c, src/shell.c
>                     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
> +    (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.")
> +    (license expat)))
> -- 
> 2.9.2
>
>
> -- 
> ♥Ⓐ  ng0
> Current Keys: https://we.make.ritual.n0.is/ng0.txt
> For non-prism friendly talk find me on http://www.psyced.org

-- 
♥Ⓐ  ng0
For non-prism friendly talk find me on http://www.psyced.org



reply via email to

[Prev in Thread] Current Thread [Next in Thread]