gnu: guile-dbi: Update upstream source.
* gnu/packages/guile-xyz.scm (guile-dbi)[source]: Use git-fetch. Update URI. [home-page]: Update URI. [native-inputs]: Add autoconf, automake, libtool, perl and texinfo.
This commit is contained in:
parent
7d59858886
commit
6849b60f1b
1 changed files with 10 additions and 4 deletions
|
@ -1522,12 +1522,12 @@ library}.")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://example.org") ;only hosted on Software Heritage
|
(url "https://github.com/opencog/guile-dbi")
|
||||||
(commit "e19b019e9683faf66c3f385b20fcc112e65f8c6e")))
|
(commit (string-append "guile-dbi-" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09ys5hj7gnj5w1iv1m194j06jk6b8sdhc8j6hcv3bprq1428kyxw"))))
|
"0nswd067gvpy9pnig409ympkw29akh9lb2i6g3w7r18g1s0ivah2"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
'(#:configure-flags
|
||||||
|
@ -1551,10 +1551,16 @@ library}.")
|
||||||
(inputs
|
(inputs
|
||||||
`(("guile-dbd-sqlite3" ,guile-dbd-sqlite3)
|
`(("guile-dbd-sqlite3" ,guile-dbd-sqlite3)
|
||||||
("guile-dbd-postgresql" ,guile-dbd-postgresql))) ; only shared library, no scheme files
|
("guile-dbd-postgresql" ,guile-dbd-postgresql))) ; only shared library, no scheme files
|
||||||
|
(native-inputs
|
||||||
|
`(("autoconf" ,autoconf)
|
||||||
|
("automake" ,automake)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("perl" ,perl)
|
||||||
|
("texinfo" ,texinfo)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("guile" ,guile-2.2)))
|
`(("guile" ,guile-2.2)))
|
||||||
(synopsis "Guile database abstraction layer")
|
(synopsis "Guile database abstraction layer")
|
||||||
(home-page "https://web.archive.org/web/20160328232717/http://home.gna.org/guile-dbi/guile-dbi.html")
|
(home-page "https://github.com/opencog/guile-dbi")
|
||||||
(description
|
(description
|
||||||
"guile-dbi is a library for Guile that provides a convenient interface to
|
"guile-dbi is a library for Guile that provides a convenient interface to
|
||||||
SQL databases. Database programming with guile-dbi is generic in that the same
|
SQL databases. Database programming with guile-dbi is generic in that the same
|
||||||
|
|
Reference in a new issue