summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2024-05-09 23:23:31 -0500
committermsglm <msglm@techchud.xyz>2024-05-09 23:23:31 -0500
commitdb39ce711a72c54a6843e7030223b4fbfe20c21b (patch)
tree08c4dbd2ddd2b5bb46c8ee318c167e342fd90779
parent675aee1b94bfd53bc90b5e8454291e18b0c69540 (diff)
downloadguix-msglm-db39ce711a72c54a6843e7030223b4fbfe20c21b.tar.gz
guix-msglm-db39ce711a72c54a6843e7030223b4fbfe20c21b.tar.bz2
guix-msglm-db39ce711a72c54a6843e7030223b4fbfe20c21b.zip
downgrade sqlite3 driver for findimagedupes
-rw-r--r--findimagedupes.scm30
1 files changed, 23 insertions, 7 deletions
diff --git a/findimagedupes.scm b/findimagedupes.scm
index fee8e3e..e3947b7 100644
--- a/findimagedupes.scm
+++ b/findimagedupes.scm
@@ -65,11 +65,28 @@
(home-page "https://gitlab.com/opennota/phash/")
(license gpl3)))
-;(define-public go-github-com-mattn-go-sqlite3-1.14.11
-; (package
-; (inherit go-github-com-mattn-go-sqlite3)
-; (name "go-github-com-mattn-go-sqlite3-1.14.11")
-; ))
+(define-public go-github-com-mattn-go-sqlite3-1.14.16
+ (package
+ (name "go-github-com-mattn-go-sqlite3")
+ (version "1.14.16")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mattn/go-sqlite3")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1isnmld31pqfxwrgy3a00xmcrb4zgaa1k32fbdpi9mirpkrljsgg"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/mattn/go-sqlite3"))
+ (home-page "https://github.com/mattn/go-sqlite3")
+ (synopsis "go-sqlite3")
+ (description "Package sqlite3 provides interface to SQLite3 databases.")
+ (license expat)))
+
(define-public findimagedupes
(package
@@ -96,8 +113,7 @@
libheif
go-gitlab-com-opennota-magicmime
go-gitlab-com-opennota-phash
- ;go-github-com-mattn-go-sqlite3-1.14.11
- go-github-com-mattn-go-sqlite3
+ go-github-com-mattn-go-sqlite3-1.14.16
))
(synopsis "finds visually similar or duplicate images.")
(description "finds duplicate images using the pHash algorithm")