diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-25 16:44:07 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-25 16:44:07 +0200 |
commit | 839167ff9d74fc490b32f6a197591964f73b65e5 (patch) | |
tree | d193bfad7c9ef5597c5cd7d2ea25fd007d01f88a /gnu/packages/code.scm | |
parent | 27c1df05a866b639a61e16d48b3f2da8fa5eb767 (diff) | |
parent | 030c912616c8ee1595218e304460041bcb4f1ceb (diff) | |
download | guix-839167ff9d74fc490b32f6a197591964f73b65e5.tar guix-839167ff9d74fc490b32f6a197591964f73b65e5.tar.gz |
Merge branch 'staging' into core-updates
Diffstat (limited to 'gnu/packages/code.scm')
-rw-r--r-- | gnu/packages/code.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm index dea2f09022..ee7447b024 100644 --- a/gnu/packages/code.scm +++ b/gnu/packages/code.scm @@ -266,15 +266,15 @@ cloc can handle a greater variety of programming languages.") (define-public the-silver-searcher (package (name "the-silver-searcher") - (version "2.1.0") + (version "2.2.0") (source (origin (method url-fetch) (uri (string-append - "http://geoff.greer.fm/ag/releases/the_silver_searcher-" + "https://geoff.greer.fm/ag/releases/the_silver_searcher-" version ".tar.gz")) (sha256 (base32 - "1m0mih1x4jpswc8ganhqh0gmwbmd2hzmz7402mxfh19s3kcjnrfl")))) + "0w1icjqd8hd45rn1y6nbfznk1a6ip54whwbfbhxp7ws2hn3ilqnr")))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config))) @@ -282,7 +282,7 @@ cloc can handle a greater variety of programming languages.") `(("pcre" ,pcre) ("xz" ,xz) ("zlib" ,zlib))) - (home-page "http://geoff.greer.fm/ag/") + (home-page "https://geoff.greer.fm/ag/") (synopsis "Fast code searching tool") (description "The Silver Searcher (@command{ag}) is a tool for quickly searching large |