;;; 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+))))