all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Noé LOPEZ" <noelopez@free.fr>
To: 68854@debbugs.gnu.org
Subject: [bug#68854] [PATCH] Add rdfind package
Date: Wed, 31 Jan 2024 17:38:46 +0100	[thread overview]
Message-ID: <f54030f9d5941ff9f1c4313729486912@free.fr> (raw)

[-- Attachment #1: Type: text/plain, Size: 74 bytes --]

Hi,

Here's a patch to add a package for rdfind.

Good evening,
Noé Lopez

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-Add-rdfind.patch --]
[-- Type: text/x-diff; name=0001-gnu-Add-rdfind.patch, Size: 1743 bytes --]

From bf43dbbaf9ebaa33be609f291f1bdc9aad07fe13 Mon Sep 17 00:00:00 2001
Message-ID: <bf43dbbaf9ebaa33be609f291f1bdc9aad07fe13.1706718647.git.noelopez@free.fr>
From: =?UTF-8?q?No=C3=A9=20Lopez?= <noelopez@free.fr>
Date: Wed, 31 Jan 2024 17:26:07 +0100
Subject: [PATCH] gnu: Add rdfind.

* gnu/packages/rdfind.scm: Add rdfind.

Change-Id: I0666a68a3a457326a329ba41bf6eba92b71eccbb
---
 gnu/packages/rdfind.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 gnu/packages/rdfind.scm

diff --git a/gnu/packages/rdfind.scm b/gnu/packages/rdfind.scm
new file mode 100644
index 0000000000..810f96c602
--- /dev/null
+++ b/gnu/packages/rdfind.scm
@@ -0,0 +1,28 @@
+(define-module (gnu packages rdfind)
+  #:use-module (guix packages)
+  #:use-module (guix download)
+  #:use-module (gnu packages nettle)
+  #:use-module (guix build-system gnu)
+  #:use-module (guix licenses))
+
+(define-public rdfind
+  (package
+    (name "rdfind")
+    (version "1.6.0")
+    (inputs (list nettle))
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://rdfind.pauldreik.se/rdfind-" version
+                           ".tar.gz"))
+       (sha256
+        (base32 "0y9j1w3nbgjks0k4kgm6qq92yrwgv66n212ncmlmhsl8y676wh3s"))))
+    (build-system gnu-build-system)
+    ;; Need to delete check because it tries to use /bin/echo
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                  (delete 'check))))
+    (synopsis "Find duplicate files utility")
+    (description "Rdfind is a command line tool that finds duplicate files.")
+    (home-page "https://rdfind.pauldreik.se/")
+    (license gpl2+)))

base-commit: 7a45f7b9e1b34912ee087daf4014aa4f67b11bf0
-- 
2.41.0


             reply	other threads:[~2024-01-31 17:12 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-31 16:38 Noé LOPEZ [this message]
2024-02-07 11:44 ` [bug#68854] (no subject) Tomás Ortín via Guix-patches via

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=f54030f9d5941ff9f1c4313729486912@free.fr \
    --to=noelopez@free.fr \
    --cc=68854@debbugs.gnu.org \
    /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.