all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Ahriman via Guix-patches via <guix-patches@gnu.org>
To: 59418@debbugs.gnu.org
Cc: Ahriman <ahriman@fedora.email>
Subject: [bug#59418] [PATCH] add raider
Date: Thu, 24 Nov 2022 15:15:05 +0000	[thread overview]
Message-ID: <20221124151505.3218-1-ahriman@fedora.email> (raw)
In-Reply-To: <20221120190518.28876-1-ahriman@fedora.email>

Hi,
https://github.com/ADBeveridge/raider/blob/develop/meson.build has meson_version: '>= 0.61.0'

* gnu/packages/gnome.scm (raider): New variable.
---
 gnu/packages/gnome.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 3d942635a2..882196a488 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -4956,6 +4956,46 @@ (define-public glib-networking
 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 #:meson meson-0.63
+           #: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"))))))))
+    (native-inputs (list gettext-minimal
+                         pkg-config
+                         cmake
+                         `(,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-public rest
   (package
     (name "rest")

base-commit: 347733bcde2edb60bc831d363971c488eb74e3f8
-- 
2.38.1





  parent reply	other threads:[~2022-11-24 15:17 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-20 19:05 [bug#59418] [PATCH] gnu: add raider Ahriman via Guix-patches via
2022-11-24  6:26 ` 宋文武 via Guix-patches via
2022-11-24 15:15 ` Ahriman via Guix-patches via [this message]
2022-11-25 10:53   ` [bug#59418] [PATCH] " Christopher Baines

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221124151505.3218-1-ahriman@fedora.email \
    --to=guix-patches@gnu.org \
    --cc=59418@debbugs.gnu.org \
    --cc=ahriman@fedora.email \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.