From 054fda25eb205019352bc1637f08c6a00449624b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Fri, 13 Sep 2024 10:56:51 +0100 Subject: gnu: go-github-com-google-go-querystring: Move to golang-web. * gnu/packages/golang.scm (go-github-com-google-go-querystring): Move from here ... * gnu/packages/golang-web.scm: ... to here. Change-Id: Id2447d337708794bbf1f32791245b0687df5f19d --- gnu/packages/golang.scm | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to 'gnu/packages/golang.scm') diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 9793e6702c..5577a285ba 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5395,33 +5395,6 @@ attributes. It also contains some convenience functions for colors, SSH to and from termios translations, readCh, reading passwords, etc.") (license license:bsd-3)))) -(define-public go-github-com-google-go-querystring - (package - (name "go-github-com-google-go-querystring") - (version "1.1.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/google/go-querystring") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "15k460c23nsmqd1nx3mvrnazws8bpb1gafrmffx7vf91m200mnwa")))) - (build-system go-build-system) - (arguments - (list - #:import-path "github.com/google/go-querystring/query" - #:unpack-path "github.com/google/go-querystring")) - (native-inputs - (list go-github-com-google-go-cmp)) - (home-page "https://github.com/google/go-querystring/") - (synopsis "Library for encoding structs into URL query parameters") - (description - "@code{go-querystring} is Go library for encoding structs into URL query -parameters.") - (license license:bsd-3))) - (define (go-gotest-tools-source version sha256-base32-hash) (origin (method git-fetch) -- cgit v1.2.3 e=''/>
path: root/tests/bournish.scm
721d69a6087375395037a86640418f1fb&showmsg=1'>Expand)
AgeCommit message (Expand)Author
Author
2024-11-20gnu: ncmpcpp: Update to 0.10.1....* gnu/packages/mpd.scm (ncmpcpp): Update to 0.10.1. [origin]: Change URI to github. [native-inputs]: Add libtool, autoconf-2.71, automake. [arguments]: Use G-expressions. Change-Id: Id2662c10c143736d10320550b6ce6fffe841984c Mazin AlHaddad
2024-11-02gnu: mpd-mpc: build from git source....* gnu/packages/mpd.scm (mpd-mpc)[source]: Switch to git-fetch. Change-Id: I56e11e9565c3b1d8130f3f4806d99ad55d94ee26 Zheng Junjie
2024-11-02gnu: mpd-mpc: Update to 0.35....* gnu/packages/mpd.scm (mpd-mpc): Update to 0.35. Change-Id: I72237f9fd0e9a8549ba316ae2cb65ed60f4f02c7 Ian Eure
2024-08-31gnu: mpd: Add 'bash' input for 'wrap-program'....It is required for cross-compilation. * gnu/packages/mpd.scm (sonata)[native-inputs]: Remove labels. [inputs]: Add 'bash-minimal'. (mcg)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I46f0f5f57a6053c7b03f0a3830df3b8bc752f361 Maxime Devos
2024-08-31build-systems: gnu: Export %default-gnu-imported-modules and %default-gnu-mod......Until now users would have to cargo cult or inspect the private %default-modules variable of (guix build-systems gnu) to discover which modules to include when extending the used modules via the #:modules argument. The renaming was automated via the command: $ git grep -l %gnu-build-system-modules | xargs sed 's/%gnu-build-system-modules/%default-gnu-imported-modules/' -i * guix/build-system/gnu.scm (%gnu-build-system-modules): Rename to... (%default-gnu-imported-modules): ... this. (%default-modules): Rename to... (%default-gnu-modules): ... this. Export. (dist-package, gnu-build, gnu-cross-build): Adjust accordingly. Change-Id: Idef307fff13cb76f3182d782b26e1cd3a5c757ee Maxim Cournoyer
2024-04-03gnu: sonata: Add gvfs as an input....I'm getting the following error and this change resolves it: /gnu/store/rw6n86c008xqdbjs3nk4i7ggf6srdpgs-python-wrapper-3.10.7/bin/python: symbol lookup error: /run/current-system/profile/lib/gio/modules/libgvfsdbus.so: undefined symbol: g_task_set_static_name Change-Id: I6f74a5a867ba7c3b3d7b233916af0e75d9e5501f Signed-off-by: Christopher Baines <mail@cbaines.net> Christopher Baines