diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-13 23:58:31 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-03 22:23:21 +0100 |
commit | ada945251cd31dbffc4e8250f41343294cfaa1b4 (patch) | |
tree | 255341c1b2cc40bc1b4eecf832039a3cb43b32b6 | |
parent | 2519c4cecb58a7c52c0b95059754367e36d75e30 (diff) | |
download | guix-ada945251cd31dbffc4e8250f41343294cfaa1b4.tar.gz guix-ada945251cd31dbffc4e8250f41343294cfaa1b4.zip |
gnu: Add go-github-com-montanaflynn-stats.
* gnu/packages/golang-maths.scm (go-github-com-montanaflynn-stats): New variable.
Change-Id: I1e131cb4ceece61e5b822178831014ed27189d9e
-rw-r--r-- | gnu/packages/golang-maths.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index f7fc58ae2f..dfb29abea4 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm @@ -1,4 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -33,6 +34,29 @@ ;;; Libraries: ;;; +(define-public go-github-com-montanaflynn-stats + (package + (name "go-github-com-montanaflynn-stats") + (version "0.7.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/montanaflynn/stats") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0y38cvp7r6fb6291k82j781dbykx00mxw8ca0v9d0fijzc1x81fi")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/montanaflynn/stats")) + (home-page "https://github.com/montanaflynn/stats") + (synopsis "Statistics library for Golang") + (description + "This package provides a statistical library for Golang.") + (license license:expat))) + ;;; ;;; Executables: ;;; |