me
/
guix
Archived
1
0
Fork 0

gnu: mdbtools: Fetch sources from git.

* gnu/packages/databases.scm (mdbtools)[source]: Fetch from git.
master
Ricardo Wurmus 2018-11-11 10:09:54 +01:00
parent f626b71923
commit f1f1cebdd3
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 6 additions and 5 deletions

View File

@ -2071,13 +2071,14 @@ for ODBC.")
(version "0.7.1") (version "0.7.1")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (string-append "https://github.com/brianb/mdbtools/archive/" (uri (git-reference
version ".tar.gz")) (url "https://github.com/brianb/mdbtools.git")
(commit version)))
(file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"05hbmxcq173kzb899gdi3bz2qcc1vi3n1qbbkwpsvrq7ggf11wyw")) "0gwcpp9y09xhs21g7my2fs8ncb8i6ahlyixcx8jd3q97jbzj441l"))))
(file-name (string-append name "-" version ".tar.gz"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs (inputs
`(("glib" ,glib))) `(("glib" ,glib)))