gnu: sqls: Fix home and source URL.
* gnu/packages/databases.scm (sqls): Place [home-page] after [native-inputs]. [source]: Swap to use direct source URL string instead of home page. [arguments]: Use list format. Set <#:install-source?> to #t. [home-page]: Fix URL after lint permanent redirect warning. [inputs]: Sort alphabetically. Change-Id: I50f1c9b38efb5774f6d95d79c4f5f8e1774fd75emaster
parent
40d697a301
commit
27adf51a58
|
@ -5352,11 +5352,10 @@ compatible with SQLite using a graphical user interface.")
|
||||||
(package
|
(package
|
||||||
(name "sqls")
|
(name "sqls")
|
||||||
(version "0.2.18")
|
(version "0.2.18")
|
||||||
(home-page "https://github.com/lighttiger2505/sqls")
|
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url home-page)
|
(url "https://github.com/sqls-server/sqls")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
|
@ -5364,19 +5363,22 @@ compatible with SQLite using a graphical user interface.")
|
||||||
"13837v27avdp2nls3vyy7ml12nj7rxragchwf92adn10ffp4aj6c"))))
|
"13837v27avdp2nls3vyy7ml12nj7rxragchwf92adn10ffp4aj6c"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "github.com/lighttiger2505/sqls"))
|
(list
|
||||||
|
#:install-source? #f
|
||||||
|
#:import-path "github.com/lighttiger2505/sqls"))
|
||||||
(inputs (list go-github-com-go-sql-driver-mysql
|
(inputs (list go-github-com-go-sql-driver-mysql
|
||||||
go-github-com-lib-pq
|
go-github-com-lib-pq
|
||||||
|
go-github-com-mattn-go-runewidth
|
||||||
go-github-com-mattn-go-sqlite3
|
go-github-com-mattn-go-sqlite3
|
||||||
go-github-com-olekukonko-tablewriter
|
go-github-com-olekukonko-tablewriter
|
||||||
go-github-com-pkg-errors
|
go-github-com-pkg-errors
|
||||||
go-github-com-sourcegraph-jsonrpc2
|
go-github-com-sourcegraph-jsonrpc2
|
||||||
go-golang-org-x-crypto
|
go-golang-org-x-crypto
|
||||||
go-github-com-mattn-go-runewidth
|
|
||||||
go-golang-org-x-xerrors
|
go-golang-org-x-xerrors
|
||||||
go-gopkg-in-yaml-v2))
|
go-gopkg-in-yaml-v2))
|
||||||
(native-inputs (list go-github-com-google-go-cmp-cmp
|
(native-inputs (list go-github-com-google-go-cmp-cmp
|
||||||
go-github-com-k0kubun-pp))
|
go-github-com-k0kubun-pp))
|
||||||
|
(home-page "https://github.com/sqls-server/sqls")
|
||||||
(synopsis "SQL language server written in Go")
|
(synopsis "SQL language server written in Go")
|
||||||
(description
|
(description
|
||||||
"This package implements the @acronym{LSP, Language Server Protocol} for SQL.")
|
"This package implements the @acronym{LSP, Language Server Protocol} for SQL.")
|
||||||
|
|
Reference in New Issue