summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimo Wilken2023-11-20 21:00:43 +0100
committerTimo Wilken2023-11-20 21:01:15 +0100
commit23675c58437ebf337fd0bdddfd32910cb5c60f89 (patch)
tree915519dd2911e6a929ea2961c00dd5369fd051e8
parentb5c54c9d033af6e69a21de0ec2ef3d57c3201a15 (diff)
Package wgmine
-rw-r--r--tw/packages/wireguard.scm44
1 files changed, 44 insertions, 0 deletions
diff --git a/tw/packages/wireguard.scm b/tw/packages/wireguard.scm
new file mode 100644
index 00000000..42cd1cda
--- /dev/null
+++ b/tw/packages/wireguard.scm
@@ -0,0 +1,44 @@
+(define-module (tw packages wireguard)
+ #:use-module (gnu packages crypto)
+ #:use-module (guix build utils)
+ #:use-module (guix build-system cmake)
+ #:use-module (guix git-download)
+ #:use-module ((guix licenses) #:prefix license:)
+ #:use-module (guix packages))
+
+(define-public wgmine
+ (let ((commit "8958c7e897f33d85959a888c673ef544e59dbaf5"))
+ (package
+ (name "wgmine")
+ (version (git-version "0.0" "0" commit))
+ (home-page "https://github.com/thatsed/wgmine")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference (url home-page) (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256 (base32 "16w0x8bw4ayrmy1xljnf6ld3867k080lijj0shxq98dlgaqd1r5m"))))
+ (build-system cmake-build-system)
+ (arguments
+ '(#:tests? #f ;no tests defined
+ #:configure-flags '("-DENABLE_O64=ON") ;TODO: disable on non-64-bit systems
+ #:phases (modify-phases %standard-phases
+ ;; Sources are in src/, so go there since `cmake-build-system'
+ ;; expects to find them in the working directory.
+ (add-before 'configure 'move-source
+ (lambda _
+ (chdir "src")))
+ ;; The upstream project does not define an `install' target.
+ (replace 'install
+ (lambda* (#:key outputs (out-of-source? #t)
+ #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out"))
+ (builddir (if out-of-source? "../build" ".")))
+ (install-file (string-append builddir "/wgmine")
+ (string-append out "/bin"))))))))
+ (inputs (list libsodium))
+ (synopsis "Generate vanity public keys for WireGuard")
+ (description
+ "Generate WireGuard private keys whose public keys have a prefix that
+you specify, for instance a few characters of their hostname. This lets you
+recognise peers by their public key more easily.")
+ (license license:expat))))