blob: 354d9833922fac780c72c92f1b02ffa19fcbda6b (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
;;; Whispers --- Stealth VPN and ssh tunneler
;;; Copyright © 2024 Runciter <runciter@whispers-vpn.org>
;;;
;;; This file is part of Whispers.
;;;
;;; Whispers is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; Whispers is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with Whispers. If not, see <http://www.gnu.org/licenses/>.
(define-module (whispers packages doc)
#:use-module (gnu)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
#:use-module (gnu packages gettext)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages man)
#:use-module (gnu packages base)
#:use-module (gnu packages admin)
#:use-module (gnu packages pkg-config)
#:use-module (guix packages)
#:use-module (guix build-system gnu)
#:use-module (guix download)
#:use-module (guix git-download)
#:use-module (guix git)
#:use-module ((guix licenses) #:prefix license:)
#:export ())
(define-public ssh-tunneler-doc
(package
(name "ssh-tunneler-doc")
(version "0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.whispers-vpn.org/ssh-tunneler-doc.git")
(commit "0b1d8a50339adb15c5915cec5e01102684cd571c")))
(sha256
(base32 "1vv1bwz99aafmwb8vhkh3rxqncyskk715hm1irya8dpvfkk0c5r3"))))
(native-inputs (list autoconf automake pkg-config texinfo))
(inputs (list))
(arguments (list #:tests? #f))
(build-system gnu-build-system)
(synopsis "Documentation for ssh tunneler Guix services.")
(description "Documentation for ssh tunneler Guix services. This
package provides an info manual.")
(home-page "https://git.whispers-vpn.org/ssh-tunneler-doc.git")
(license (list license:fdl1.3+))))
(define-public whispers-doc
(package
(name "whispers-doc")
(version "0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://git.whispers-vpn.org/whispers-doc.git")
(commit "2a76cd88aa9f2ee182ec059870fde832bf182d33")))
(sha256
(base32 "1h7lc110qhd8slgzjv6ap91r17grcflpgkp3bpxvng0dj55dmk2a"))))
(native-inputs (list autoconf automake pkg-config texinfo))
(inputs (list))
(propagated-inputs (list ssh-tunneler-doc))
(arguments (list #:tests? #f))
(build-system gnu-build-system)
(synopsis "Documentation for whispers Guix services.")
(description "Documentation for whispers Guix services. This package
provides info manuals.")
(home-page "https://git.whispers-vpn.org/whispers-doc.git")
(license (list license:fdl1.3+))))
|