summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChloe Brown <chloe.brown.00@outlook.com>2022-11-08 15:14:01 +0000
committerChloe Brown <chloe.brown.00@outlook.com>2022-11-08 15:14:01 +0000
commite580610e54a8bf76133fa6bc6ebdc7fe0fa07caf (patch)
treeab746065250760a5b14af51f6bf1d127c33ae41a
parente6f9991f0467f220e8c42e5607b2db6cf584465b (diff)
swaylock-effects: swap back to using guix sources.
-rw-r--r--yellowsquid/packages/swaylock.scm22
1 files changed, 3 insertions, 19 deletions
diff --git a/yellowsquid/packages/swaylock.scm b/yellowsquid/packages/swaylock.scm
index 1ec546b..e5cf16b 100644
--- a/yellowsquid/packages/swaylock.scm
+++ b/yellowsquid/packages/swaylock.scm
@@ -1,7 +1,6 @@
(define-module (yellowsquid packages swaylock)
#:use-module (gnu packages linux)
#:use-module (gnu packages wm)
- #:use-module (guix git-download)
#:use-module (guix packages))
(define-public swaylock-pam
@@ -12,22 +11,7 @@
(define-public swaylock-effects-pam
(package
- (inherit swaylock-pam)
+ (inherit swaylock-effects)
(name "swaylock-effects")
- (version "1.6.10")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/jirutka/swaylock-effects")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1d8ri7bzwfr53ybgf23acz57wyhcl2f1nqprcda1v9bzfgsqfk2n"))))
- (arguments `(#:configure-flags '("-Dsse=false")))
- (synopsis "Screen locking utility for Wayland compositors with effects")
- (description "@code{Swaylock-effects} is a fork of swaylock with additional
-features, such as the ability to take a screenshot as the background image,
-display a clock or apply image manipulation techniques to the background image.")
- (home-page "https://github.com/jirutka/swaylock-effects")))
+ (inputs (modify-inputs (package-inputs swaylock)
+ (append linux-pam)))))