summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:03 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:03 -0500
commit30dac66d60eabb4bb57e1c961c127bfe3ccb418e (patch)
tree08c4dbd2ddd2b5bb46c8ee318c167e342fd90779
parent492e407e5c22e7a2f2983952ef777011ef719b5a (diff)
downloadguix-techchud-30dac66d60eabb4bb57e1c961c127bfe3ccb418e.tar.gz
guix-techchud-30dac66d60eabb4bb57e1c961c127bfe3ccb418e.tar.bz2
guix-techchud-30dac66d60eabb4bb57e1c961c127bfe3ccb418e.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")