mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: ugrep: Update to 6.3.0.
* gnu/packages/search.scm (ugrep): Update to 6.3.0. [source]: Don't delete linux binaries, they're no longer included. [inputs]: Add dependency on brotli for brotli support. Change-Id: If1dc15b5f554079a5bc084501683bd6c5b5926d2 Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
b4206a08ba
commit
8f02f6e8c9
1 changed files with 3 additions and 4 deletions
|
@ -737,22 +737,20 @@ (define (purge-term-support input output)
|
||||||
(define-public ugrep
|
(define-public ugrep
|
||||||
(package
|
(package
|
||||||
(name "ugrep")
|
(name "ugrep")
|
||||||
(version "6.1.0")
|
(version "6.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Genivia/ugrep")
|
(url "https://github.com/Genivia/ugrep")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "01zgvwhawz1sv3sib31jgbs5q27yc4kqmhz3v9l1zbqkkhwxsvqy"))
|
(base32 "0s4cic232nlqzr3ha40gfgdnfqj12j6k5j89mrzjv8gk2zwn9l5z"))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
#~(begin
|
#~(begin
|
||||||
(delete-file-recursively "bin/win32") ; pre-built
|
(delete-file-recursively "bin/win32") ; pre-built
|
||||||
(delete-file-recursively "bin/win64") ; 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 (lambda (regexp)
|
||||||
(for-each delete-file
|
(for-each delete-file
|
||||||
(find-files "tests" regexp)))
|
(find-files "tests" regexp)))
|
||||||
|
@ -765,6 +763,7 @@ (define-public ugrep
|
||||||
lzip ;; lzma
|
lzip ;; lzma
|
||||||
pcre2
|
pcre2
|
||||||
zlib
|
zlib
|
||||||
|
brotli
|
||||||
`(,zstd "lib")))
|
`(,zstd "lib")))
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
|
Loading…
Reference in a new issue