summaryrefslogtreecommitdiff
path: root/hall.scm
diff options
context:
space:
mode:
authorRunciter2025-07-03 23:58:23 +0800
committerRunciter2025-07-03 23:58:23 +0800
commit63dc81e2b164514ca855712841209eec7e6ae9d3 (patch)
treeb7b4a2b3a2ac123a0ebb6f63606d2451831e6d10 /hall.scm
downloadwhispers-command-63dc81e2b164514ca855712841209eec7e6ae9d3.tar.gz
A .gitignore A AUTHORS A COPYING A ChangeLog A HACKING A Makefile.am A NEWS A README A build-aux/test-driver.scm A configure.ac A guix.scm A hall.scm A pre-inst-env.in A scripts/whispers.in A whispers.scm A whispers/hconfig.scm Signed-off-by: Runciter <runciter@whispers-vpn.org>
Diffstat (limited to 'hall.scm')
-rw-r--r--hall.scm49
1 files changed, 49 insertions, 0 deletions
diff --git a/hall.scm b/hall.scm
new file mode 100644
index 0000000..9eb4a3d
--- /dev/null
+++ b/hall.scm
@@ -0,0 +1,49 @@
+(hall-description
+ (name "whispers")
+ (prefix "")
+ (version "0.1")
+ (author "Runciter")
+ (email " <runciter@whispers-vpn.org>")
+ (copyright (2024))
+ (synopsis
+ "Perform actions of the services of the shepherd daemons of\na whispers tree.")
+ (description
+ "The whispers command is a simple convenience wrapper\n around the herd program. Instead of specifying a file path\nto the listening socket of a running shepherd in the whispers tree, the\nuser simply provides its absolute whispers tree path as an\nargument to the --lieutenant option of this command.")
+ (home-page "")
+ (license gpl3+)
+ (dependencies
+ `(("guile-config" (config) ,guile-config)))
+ (skip ())
+ (features
+ ((guix #f)
+ (use-guix-specs-for-dependencies #f)
+ (native-language-support #f)
+ (licensing #f)))
+ (files (libraries
+ ((scheme-file "whispers")
+ (directory "whispers" ((scheme-file "hconfig")))))
+ (tests ((directory "tests" ())))
+ (programs
+ ((directory "scripts" ((in-file "whispers")))))
+ (documentation
+ ((org-file "README")
+ (symlink "README" "README.org")
+ (text-file "HACKING")
+ (text-file "COPYING")
+ (text-file "NEWS")
+ (text-file "AUTHORS")
+ (text-file "ChangeLog")))
+ (infrastructure
+ ((scheme-file "guix")
+ (text-file ".gitignore")
+ (scheme-file "hall")
+ (directory
+ "build-aux"
+ ((tex-file "texinfo")
+ (text-file "mdate-sh")
+ (scheme-file "test-driver")
+ (text-file "missing")
+ (text-file "install-sh")))
+ (autoconf-file "configure")
+ (automake-file "Makefile")
+ (in-file "pre-inst-env")))))