diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-04 22:57:34 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-05-07 15:38:27 +0100 |
commit | 2799f6c6e1b542fbf7756326ddd05ff5352b2001 (patch) | |
tree | e34e22266ad320197e55d67de69e571e0d377f18 | |
parent | bea3defe234354093bde1e44b1f6f1df88c5360e (diff) | |
download | guix-2799f6c6e1b542fbf7756326ddd05ff5352b2001.tar.gz guix-2799f6c6e1b542fbf7756326ddd05ff5352b2001.zip |
gnu: go-github-com-mattn-go-sqlite3: Update to 1.14.22.
* gnu/packages/golang-xyz.scm (go-github-com-mattn-go-sqlite3): Update to 1.14.22.
Change-Id: I01bf397b7d74db812883994deb2c2249adf14d1f
-rw-r--r-- | gnu/packages/golang-xyz.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 6d2db7ccb0..00243753fd 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -2169,7 +2169,7 @@ the @code{cpan} module @code{Parse::CommandLine}.") (define-public go-github-com-mattn-go-sqlite3 (package (name "go-github-com-mattn-go-sqlite3") - (version "1.14.6") + (version "1.14.22") (source (origin (method git-fetch) @@ -2178,10 +2178,11 @@ the @code{cpan} module @code{Parse::CommandLine}.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "04anvqkc37mmc3z1dy4xfa6cas67zlxnnab0ywii7sylk864mhxz")))) + (base32 "05fcdh6likz0hkvxnrkz3r3l5gzxfjh93w5015m9hs1wi6qpdqyb")))) (build-system go-build-system) (arguments (list + #:go go-1.19 #:import-path "github.com/mattn/go-sqlite3")) (home-page "https://github.com/mattn/go-sqlite3") (synopsis "Sqlite3 driver for Go") |