me
/
guix
Archived
1
0
Fork 0

gnu: ugrep: Update to 6.1.0.

* gnu/packages/search.scm (ugrep): Update to 6.1.0.
[source]: Delete included linux binaries.

Change-Id: I13aa90578d8f618a0a9c2c67c59c41e8e219660f
Signed-off-by: Christopher Baines <mail@cbaines.net>
master
Ashish SHUKLA 2024-06-03 19:49:51 +00:00 committed by Christopher Baines
parent a238802f56
commit 6eb07c78a9
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 4 additions and 2 deletions

View File

@ -737,20 +737,22 @@ bibliographic data and simple document and bibtex retrieval.")
(define-public ugrep
(package
(name "ugrep")
(version "6.0.0")
(version "6.1.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/Genivia/ugrep")
(commit (string-append "v" version))))
(sha256
(base32 "07lqjvyvda11d8xk1cmwwyx41w6l423jghcf21fnp4hrkrcsd5cd"))
(base32 "01zgvwhawz1sv3sib31jgbs5q27yc4kqmhz3v9l1zbqkkhwxsvqy"))
(file-name (git-file-name name version))
(modules '((guix build utils)))
(snippet
#~(begin
(delete-file-recursively "bin/win32") ; pre-built
(delete-file-recursively "bin/win64") ; pre-built
(delete-file-recursively "bin/linux_amd64") ; pre-built
(delete-file-recursively "bin/linux_arm64") ; pre-built
(for-each (lambda (regexp)
(for-each delete-file
(find-files "tests" regexp)))