bumped version of swaylock-effects to fix screenshot bug
This commit is contained in:
parent
9a856d3a5b
commit
f3e224d612
20
modules/ryan-packages/wm.scm
Normal file
20
modules/ryan-packages/wm.scm
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
(define-module (ryan-packages wm)
|
||||||
|
#:use-module (guix download)
|
||||||
|
#:use-module (guix packages)
|
||||||
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (guix git-download)
|
||||||
|
#:use-module (guix utils)
|
||||||
|
#:use-module (gnu packages wm))
|
||||||
|
|
||||||
|
(define-public swaylock-effects-new
|
||||||
|
(package
|
||||||
|
(inherit swaylock-effects)
|
||||||
|
(version "1.6.11")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/jirutka/swaylock-effects")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0j7dxn66xqlf6iv2arqzz7mxlh7nf85anvpyf30d2frcidarda9h"))))))
|
Loading…
Reference in a new issue