diff options
author | Runciter | 2024-10-28 02:19:54 +0800 |
---|---|---|
committer | Runciter | 2024-10-28 02:19:54 +0800 |
commit | af5bbe630cb990daf9f29b307572f965ee9fa099 (patch) | |
tree | 86baaba3b27b4eec62cb8ec40692812854901a3f /whispers/packages/doc.scm | |
download | whispers-af5bbe630cb990daf9f29b307572f965ee9fa099.tar.gz |
Initial.
A .guix-authorizations
A .guix-channel
A COPYING
A README
A whispers/packages/dict.scm
A whispers/packages/doc.scm
A whispers/packages/pdf.scm
A whispers/packages/sh.scm
A whispers/packages/whispers.scm
A whispers/services/console.scm
A whispers/services/dict.scm
A whispers/services/finance.scm
A whispers/services/gps.scm
A whispers/services/proton.scm
A whispers/services/ssh-agent.scm
A whispers/services/ssh-tunneler.scm
A whispers/services/whispers.scm
A whispers/services/whispers/finance.scm
A whispers/services/whispers/gps.scm
A whispers/services/whispers/mail.scm
A whispers/services/whispers/ssh.scm
A whispers/services/whispers/vpn.scm
A whispers/services/whispers/xdg.scm
A whispers/tests/ssh-tunneler.scm
Diffstat (limited to 'whispers/packages/doc.scm')
-rw-r--r-- | whispers/packages/doc.scm | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/whispers/packages/doc.scm b/whispers/packages/doc.scm new file mode 100644 index 0000000..354d983 --- /dev/null +++ b/whispers/packages/doc.scm @@ -0,0 +1,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+)))) |