diff options
author | msglm <msglm@techchud.xyz> | 2024-04-10 02:37:11 -0500 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2024-04-10 02:37:11 -0500 |
commit | 3457410e437ccc7825c21e60a96c12f7eed086ac (patch) | |
tree | 8a33aaa851687f508b6f98f5b0816d0e364d24bb /findimagedupes.scm | |
parent | 95e26f997e2457dfa81c9ad41fba72d71e131744 (diff) | |
download | guix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.tar.gz guix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.tar.bz2 guix-msglm-3457410e437ccc7825c21e60a96c12f7eed086ac.zip |
use new gnu package for go-sqlite3
Diffstat (limited to 'findimagedupes.scm')
-rw-r--r-- | findimagedupes.scm | 14 |
1 files changed, 8 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") |