diff options
Diffstat (limited to 'gnu/packages/irc.scm')
-rw-r--r-- | gnu/packages/irc.scm | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index e1cccb6d1f..fd0271c5d6 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -925,11 +925,11 @@ building block for other projects.") (base32 "1ag5x7h71pxjaaf4b561rwdqr05zzywkc0p3jf2yhg3lbjkjrc7z")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; There are no tests. - #:make-flags - (list - (string-append "CC=" ,(cc-for-target)) - (string-append "PREFIX=" %output)))) + (list #:tests? #f ; There are no tests. + #:make-flags + #~(list + (string-append "CC=" #$(cc-for-target)) + (string-append "PREFIX=" #$output)))) (native-inputs (list pkg-config universal-ctags)) (inputs @@ -1096,21 +1096,21 @@ what.") (define-public soju (package (name "soju") - (version "0.7.0") + (version "0.8.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://git.sr.ht/~emersion/soju") + (url "https://codeberg.org/emersion/soju") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1a0mp8f5i1ajh67y6fasmzgca3w1ccaiz19sx87rflbyi1mrhdlz")))) + (base32 "10qc0g78yhsg6fnnb046jr0s592isw0r0mvydy6frgnx9rxac6k6")))) (build-system go-build-system) (arguments (list #:install-source? #f - #:import-path "git.sr.ht/~emersion/soju" + #:import-path "codeberg.org/emersion/soju" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'adjust-makefile @@ -1126,9 +1126,7 @@ what.") (replace 'build (lambda* (#:key import-path #:allow-other-keys) (with-directory-excursion (string-append "src/" import-path) - ;; To use an alternative SQLite library that does not require - ;; CGO and build with PAM. - (setenv "GOFLAGS" "-v -x -trimpath -tags=moderncsqlite -tags=pam") + (setenv "GOFLAGS" "-v -x -trimpath -tags=pam") (setenv "SYSCONFDIR" (string-append #$output "/etc")) (invoke "make")))) (replace 'install @@ -1143,7 +1141,7 @@ what.") go-github-com-emersion-go-sasl go-github-com-lib-pq go-github-com-mattn-go-sqlite3 - go-github-com-msteinert-pam + go-github-com-msteinert-pam-v2 go-github-com-pires-go-proxyproto go-github-com-prometheus-client-golang go-github-com-sherclockholmes-webpush-go |