summaryrefslogtreecommitdiff
path: root/test/test.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.scm')
-rw-r--r--test/test.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/test.scm b/test/test.scm
new file mode 100644
index 0000000..482631b
--- /dev/null
+++ b/test/test.scm
@@ -0,0 +1,22 @@
+(define-module (test 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+))))