summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-24 06:58:55 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-01-24 06:58:55 +0100
commit5c41a298cbfad8d029f003917a9c8c353e6552bc (patch)
tree7462f9b257c7a2eea2db2faafb1926521680e1b5
parent254b217521faf8c1bd5e1cad82fa1b08a61322e7 (diff)
Paste example package to test if the module can not be empty
-rw-r--r--test.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/test.scm b/test.scm
index 128273f..fedf8f1 100644
--- a/test.scm
+++ b/test.scm
@@ -1 +1,22 @@
(define-module (test) #:use-module (guix packages))
+
+(define-public emacs-obs-websocket-el
+ (let ((commit "ce6be2a417705098e26c76122eff2a0261f57d42")
+ (revision "0"))
+ (package (name "emacs-obs-websocket-el")
+ (version (git-version "0.1" revision commit))
+ (source (origin (uri (git-reference
+ (url "https://github.com/sachac/obs-websocket-el")
+ (commit commit)))
+ (method git-fetch)
+ (sha256 (base32 "0fdjpxc75jk9cxgg66p24z1n5w9zzqbrci5mlqam31a2caip9bmx"))
+ (file-name (git-file-name name version))))
+ (build-system emacs-build-system)
+ (propagated-inputs `(("emacs-websocket" ,emacs-websocket)))
+ (home-page "https://github.com/sachac/obs-websocket-el")
+ (synopsis "Emacs package for remote control of OBS")
+ (description
+ "obs-websocket-el is a client for the obs-websocket plugin for OBS.
+It enables you to remotely control your streaming or recording session from
+Emacs!")
+ (license license:gpl3+))))