guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 55506e7c9fbd93e86d24ae1bc65bbb4f18531d73
Author: NoƩ Lopez <[email protected]>
AuthorDate: Thu Dec 18 21:56:52 2025 +0100
gnu: raider: Move to (gnu packages gnome-circle).
* gnu/packages/gnome-circle.scm (raider): New variable.
* gnu/packages/gnome.scm (raider): Replace with deprecated alias.
Change-Id: Ibdd96547f6b763821fc13ca34cc76bc741a3e292
Signed-off-by: Liliana Marie Prikler <[email protected]>
---
gnu/packages/gnome-circle.scm | 51 +++++++++++++++++++++++++++++++++++++++++++
gnu/packages/gnome.scm | 51 ++-----------------------------------------
2 files changed, 53 insertions(+), 49 deletions(-)
diff --git a/gnu/packages/gnome-circle.scm b/gnu/packages/gnome-circle.scm
index bf2e77cc7b..c2bee41b3a 100644
--- a/gnu/packages/gnome-circle.scm
+++ b/gnu/packages/gnome-circle.scm
@@ -34,6 +34,7 @@
#:use-module (gnu packages aidc)
#:use-module (gnu packages backup)
#:use-module (gnu packages bash)
+ #:use-module (gnu packages cmake)
#:use-module (gnu packages enchant)
#:use-module (gnu packages freedesktop)
#:use-module (gnu packages gettext)
@@ -337,3 +338,53 @@ It features:
Aegis (encrypted / plain-text), andOTP, Google Authenticator
@end itemize")
(license license:gpl3+)))
+
+(define-public raider
+ (package
+ (name "raider")
+ (version "1.3.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ADBeveridge/raider/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0ll9220d6qf9m7wdi5xhq69p8h8whs7l5h5nzdhlbn99qh5388bz"))))
+ (build-system meson-build-system)
+ (arguments
+ (list #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-paths
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute*
"data/com.github.ADBeveridge.Raider.gschema.xml"
+ (("/usr/bin/shred")
+ (which "shred")))))
+ (add-after 'install 'wrap-program
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (wrap-program (string-append (assoc-ref outputs "out")
+ "/bin/raider")
+ `("GSETTINGS_SCHEMA_DIR" =
+ (,(string-append (assoc-ref outputs "out")
+ "/share/glib-2.0/schemas")))))))))
+ (native-inputs
+ (list gettext-minimal
+ pkg-config
+ cmake-minimal
+ `(,glib "bin")
+ desktop-file-utils
+ itstool
+ gobject-introspection
+ blueprint-compiler
+ `(,gtk "bin")))
+ (inputs
+ (list libadwaita
+ gtk))
+ (home-page "https://github.com/ADBeveridge/raider")
+ (synopsis "Securely delete your files")
+ (description
+ "Raider is a simple shredding program built for GNOME. Also known as
+File Shredder, it uses the GNU Core Utility called shred to securely delete
+files.")
+ (license license:gpl3+)))
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 3aa55516fc..0471a83fd5 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4806,55 +4806,8 @@ GLibproxyResolver, and a GNOME GProxyResolver that uses
the proxy information
from the GSettings schemas in gsettings-desktop-schemas.")
(license license:lgpl2.1+)))
-(define-public raider
- (package
- (name "raider")
- (version "1.3.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/ADBeveridge/raider/")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0ll9220d6qf9m7wdi5xhq69p8h8whs7l5h5nzdhlbn99qh5388bz"))))
- (build-system meson-build-system)
- (arguments
- (list #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'patch-paths
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute*
"data/com.github.ADBeveridge.Raider.gschema.xml"
- (("/usr/bin/shred")
- (which "shred")))))
- (add-after 'install 'wrap-program
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (wrap-program (string-append (assoc-ref outputs "out")
- "/bin/raider")
- `("GSETTINGS_SCHEMA_DIR" =
- (,(string-append (assoc-ref outputs "out")
- "/share/glib-2.0/schemas")))))))))
- (native-inputs
- (list gettext-minimal
- pkg-config
- cmake-minimal
- `(,glib "bin")
- desktop-file-utils
- itstool
- gobject-introspection
- blueprint-compiler
- `(,gtk "bin")))
- (inputs
- (list libadwaita
- gtk))
- (home-page "https://github.com/ADBeveridge/raider")
- (synopsis "Securely delete your files")
- (description
- "Raider is a simple shredding program built for GNOME. Also known as
-File Shredder, it uses the GNU Core Utility called shred to securely delete
-files.")
- (license license:gpl3+)))
+(define-deprecated/public-alias raider
+ (@ (gnu packages gnome-circle) raider))
(define-public librest
(package