GNU bug report logs - #49702
[PATCH] gnu: Add swaylock-effects

Previous Next

Package: guix-patches;

Reported by: phodina <phodina <at> protonmail.com>

Date: Fri, 23 Jul 2021 03:07:02 UTC

Severity: normal

Tags: patch

Done: Liliana Marie Prikler <liliana.prikler <at> gmail.com>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Liliana Marie Prikler <liliana.prikler <at> gmail.com>
To: phodina <phodina <at> protonmail.com>
Cc: 49702 <at> debbugs.gnu.org
Subject: [bug#49702] [PATCH v3] gnu: Add swaylock-effects.
Date: Sat, 18 Sep 2021 15:29:55 +0200
Pushed with the following changes:

Am Samstag, den 18.09.2021, 12:52 +0000 schrieb phodina:
> * gnu/packages/wm.scm (swaylock-effects): New variable.
> 
> diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
> index 957c5a0d5a..1cc68388b8 100644
> --- a/gnu/packages/wm.scm
> +++ b/gnu/packages/wm.scm
> @@ -83,6 +83,7 @@
>    #:use-module (gnu packages bison)
>    #:use-module (gnu packages build-tools) ;for meson-0.55
>    #:use-module (gnu packages calendar)
> +  #:use-module (gnu packages commencement) ; for gcc>9
Dropped, wouldn't be needed as (gnu packages gcc) is already imported.
>    #:use-module (gnu packages datastructures)
>    #:use-module (gnu packages docbook)
>    #:use-module (gnu packages documentation)
> @@ -1617,6 +1618,31 @@ modules for building a Wayland compositor.")
>      (description "Swaylock is a screen locking utility for Wayland
> compositors.")
>      (license license:expat))) ; MIT license
> 
> +(define-public swaylock-effects
> +  (let ((commit "5cb9579faaf5662b111f5722311b701eff1c1d00")
> +        (revision "1"))
> +    (package (inherit swaylock)
> +             (name "swaylock-effects")
> +             (version commit)
Used git-version.
> +             (source (origin
> +                       (method git-fetch)
> +                       (uri (git-reference
> +                             (url "
> https://github.com/mortie/swaylock-effects")
> +                             (commit version)))
Used commit.
> +                       (file-name (git-file-name name version))
> +                       (sha256
> +                        (base32
> +                         "036dkhfqgk7g9vbr5pxgrs66h5fz0rwdsc67i1w51a
> a9v01r35ca"))))
> +             ; Requires gcc>=9 see the issue here
> +             ; https://github.com/mortie/swaylock-effects/issues/26
> +             (native-inputs `(("gcc", gcc-9)
> +                              ,@(package-native-inputs swaylock)))
Dropped, instead configured and patched to not use SSE or mtune=native
for the sake of reproducible builds.
> +             (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/mortie/swaylock-effects"
> ))))
Indentation fixed.

Thanks





This bug report was last modified 3 years and 264 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.