summaryrefslogtreecommitdiff
path: root/packages/test.scm
blob: 48efef7325393dc1b6cb82fa8b3547a2be323a2a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(define-module (packages test)
  #:use-module (guix git-download)
  #: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+))))