summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/code.scm17
1 files changed, 11 insertions, 6 deletions
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 5e5fa1ad5ef..6c210271fa7 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -24,6 +24,7 @@
24;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr> 24;;; Copyright © 2025 Nicolas Graves <ngraves@ngraves.fr>
25;;; Copyright © 2025 Ada Stevenson <adanskana@gmail.com> 25;;; Copyright © 2025 Ada Stevenson <adanskana@gmail.com>
26;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com> 26;;; Copyright © 2025 Sharlatan Hellseher <sharlatanus@gmail.com>
27;;; Copyright © 2026 Luca Kredel <luca.kredel@web.de>
27;;; 28;;;
28;;; This file is part of GNU Guix. 29;;; This file is part of GNU Guix.
29;;; 30;;;
@@ -477,7 +478,7 @@ cloc can handle a greater variety of programming languages.")
477(define-public scc 478(define-public scc
478 (package 479 (package
479 (name "scc") 480 (name "scc")
480 (version "3.3.5") 481 (version "3.7.0")
481 (source 482 (source
482 (origin 483 (origin
483 (method git-fetch) 484 (method git-fetch)
@@ -486,20 +487,24 @@ cloc can handle a greater variety of programming languages.")
486 (commit (string-append "v" version)))) 487 (commit (string-append "v" version))))
487 (file-name (git-file-name name version)) 488 (file-name (git-file-name name version))
488 (sha256 489 (sha256
489 (base32 "0fvp9ab65vwn3dn0wm8l63rrp5fz1gpymcxs8yr0h4s5zmrsg9zf")))) 490 (base32 "1kybs8849whpl1rgbgnwcy0z9nb1jzcjdimba91n6zng9ksz9sl0"))))
490 (build-system go-build-system) 491 (build-system go-build-system)
491 (arguments 492 (arguments
492 (list 493 (list
493 #:install-source? #f 494 #:install-source? #f
494 #:import-path "github.com/boyter/scc")) 495 #:import-path "github.com/boyter/scc"))
495 (native-inputs 496 (native-inputs
496 (list go-github-com-dbaggerman-cuba 497 (list go-github-com-agnivade-levenshtein
498 go-github-com-boyter-gocodewalker
499 go-github-com-boyter-simplecache
497 go-github-com-json-iterator-go 500 go-github-com-json-iterator-go
498 go-github-com-mattn-go-runewidth 501 go-github-com-mattn-go-runewidth
499 go-github-com-minio-blake2b-simd 502 go-github-com-rs-zerolog
500 go-github-com-spf13-cobra 503 go-github-com-spf13-cobra
501 go-golang-org-x-text 504 go-github-com-spf13-pflag
502 go-gopkg-in-yaml-v2)) 505 go-go-yaml-in-yaml-v2
506 go-golang-org-x-crypto
507 go-golang-org-x-text))
503 (home-page "https://github.com/boyter/scc") 508 (home-page "https://github.com/boyter/scc")
504 (synopsis "Fast code counter written in Go") 509 (synopsis "Fast code counter written in Go")
505 (description 510 (description