summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2024-04-10 02:37:11 -0500
committermsglm <msglm@techchud.xyz>2024-04-10 02:37:11 -0500
commit3457410e437ccc7825c21e60a96c12f7eed086ac (patch)
tree8a33aaa851687f508b6f98f5b0816d0e364d24bb
parent95e26f997e2457dfa81c9ad41fba72d71e131744 (diff)
downloadguix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.tar.gz
guix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.tar.bz2
guix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.zip
use new gnu package for go-sqlite3
-rw-r--r--findimagedupes.scm14
-rw-r--r--meme.scm1
2 files changed, 9 insertions, 6 deletions
diff --git a/findimagedupes.scm b/findimagedupes.scm
index 971340e..fee8e3e 100644
--- a/findimagedupes.scm
+++ b/findimagedupes.scm
@@ -8,6 +8,7 @@
#:use-module (gnu packages file)
#:use-module (gnu packages gcc)
#:use-module (gnu packages golang)
+ #:use-module (gnu packages golang-xyz)
#:use-module (gnu packages image)
)
@@ -64,11 +65,11 @@
(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.11
+; (package
+; (inherit go-github-com-mattn-go-sqlite3)
+; (name "go-github-com-mattn-go-sqlite3-1.14.11")
+; ))
(define-public findimagedupes
(package
@@ -95,7 +96,8 @@
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-1.14.11
+ go-github-com-mattn-go-sqlite3
))
(synopsis "finds visually similar or duplicate images.")
(description "finds duplicate images using the pHash algorithm")
diff --git a/meme.scm b/meme.scm
index 5fe9494..917a016 100644
--- a/meme.scm
+++ b/meme.scm
@@ -3,6 +3,7 @@
#:use-module (guix build-system go)
#:use-module (guix packages)
#:use-module (guix git-download)
+ #:use-module (gnu packages golang)
)
(define-public go-github-com-nfnt-resize