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/sh.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/sh.scm')
-rw-r--r-- | whispers/packages/sh.scm | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/whispers/packages/sh.scm b/whispers/packages/sh.scm new file mode 100644 index 0000000..cd9d0a1 --- /dev/null +++ b/whispers/packages/sh.scm @@ -0,0 +1,98 @@ +;;; Whispers --- Stealth VPN and ssh tunneler +;;; Copyright © 2023 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 sh) + #:use-module (gnu) + #:use-module (gnu packages) + #:use-module (gnu packages base) + #:use-module (gnu packages package-management) + #:use-module (whispers packages whispers) + #:use-module (guix packages) + #:use-module (guix build-system gnu) + #:use-module (guix git-download) + #:use-module (guix git) + #:use-module (guix licenses) + #:export ()) + +(define-public ssh-tunneler-tests + (let ((commit "7aa78806ae0385a217164710728632d80a1db932") + (chksum "1gyz92xm6wmv2slq9fz1ny1wbmkv6yqpm7ccksqzbfbvhw3nkwcw")) + (package + (name "ssh-tunneler-tests") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.whispers-vpn.org/ssh-tunneler-tests.git") + (commit commit))) + (sha256 (base32 chksum)))) + (build-system gnu-build-system) + (home-page "https://git.whispers-vpn.org/ssh-tunneler-tests.git") + (synopsis "Test script for the (whispers services ssh-tunneler) +module.") + (description "This package provides the test script of the SSH +Tunneler Guix services. The script instanciates virtual machines that +establish persistent ssh connections between themselves.") + (license gpl3+)))) + +(define-public whispers-tests + (let ((commit "8ea9f61a000556197f631253ce6193316bde1f61") + (chksum "1l87cjiz9c7v9imjzqk29v49yxg3hl58qv8m0m4jdijvlswzrrhp")) + (package + (name "whispers-tests") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.whispers-vpn.org/whispers-tests.git") + (commit commit))) + (sha256 (base32 chksum)))) + (build-system gnu-build-system) + (home-page "https://git.whispers-vpn.org/ssh-tunneler-tests.git") + (synopsis "Test script for the (whispers services whispers) + and (whispers services whispers vpn) modules.") + (description "This package provides: +* A test script instantiating a VM extending a manually configured +whispers tree, for purposed of testing service status of a bare-bones +tree of whispers lieutenants. +* A test script instanciating a VPN network of VMs, for various +testing puposes.") + (license gpl3+)))) + +(define-public sh-pulse + (let ((commit "f2cb88d5cccf05ceeea0003d3250d5c5ce015b9b") + (chksum "1yq5lpvz9azap6dp47kcmzf42xypwc3bwsr9cfmjdq01j1pd8gbz")) + (package + (name "sh-pulse") + (version "0.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.whispers-vpn.org/sh-pulse.git") + (commit commit))) + (sha256 (base32 chksum)))) + (build-system gnu-build-system) + (home-page "https://git.whispers-vpn.org/sh-pulse.git") + (synopsis "Control script for pulseaudio volume and output sink") + (description "The vlm script helps the user to easily set keyboard +shortcuts to control pulseaudio volume, mute and switch pulseaudio +output.") + (license gpl3+)))) |