diff options
author | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-25 00:08:44 +0100 |
---|---|---|
committer | Marek Paśnikowski <marek@marekpasnikowski.pl> | 2024-01-25 00:08:44 +0100 |
commit | 6c2e804d19930f51162fdaa8d52db55b8609bbdd (patch) | |
tree | 5bdf3985230bad5864645ab700bcd70dc16caa50 /packages/test.scm | |
parent | 17ff84e4ab4342ca7273c30d1b2d7d0601cf0f37 (diff) |
Comment out the package, to focus on the module only
Diffstat (limited to 'packages/test.scm')
-rw-r--r-- | packages/test.scm | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/packages/test.scm b/packages/test.scm index 48efef7..8097577 100644 --- a/packages/test.scm +++ b/packages/test.scm @@ -2,23 +2,23 @@ #: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+)))) +;; (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+)))) |