gnu: ding-libs: Build from Git.
* gnu/packages/sssd.scm (ding-libs)[source]: Use GIT-FETCH and GIT-FILE-NAME. [native-inputs]: Add autoconf, automake, libtool, and pkg-config.master
parent
344bd4cf5c
commit
b00f2728d8
|
@ -1,6 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si>
|
;;; Copyright © 2021 Timotej Lazar <timotej.lazar@araneo.si>
|
||||||
;;; Copyright © 2021, 2022 Remco van 't Veer <remco@remworks.net>
|
;;; Copyright © 2021, 2022 Remco van 't Veer <remco@remworks.net>
|
||||||
|
@ -123,14 +123,17 @@ manage user, group and computer accounts for a domain.")
|
||||||
(package
|
(package
|
||||||
(name "ding-libs")
|
(name "ding-libs")
|
||||||
(version "0.6.1")
|
(version "0.6.1")
|
||||||
(source (origin
|
(source
|
||||||
(method url-fetch)
|
(origin
|
||||||
(uri (string-append "https://releases.pagure.org/SSSD/ding-libs/"
|
(method git-fetch)
|
||||||
"ding-libs-" version ".tar.gz"))
|
(uri (git-reference
|
||||||
(sha256
|
(url "https://github.com/SSSD/ding-libs")
|
||||||
(base32
|
(commit version)))
|
||||||
"1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3"))))
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0127cpslqkapwx1rp4d1w13gw62m4cwf3hj8r0nnmvihs4199270"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(native-inputs (list autoconf automake libtool pkg-config))
|
||||||
(home-page "https://pagure.io/SSSD/ding-libs/")
|
(home-page "https://pagure.io/SSSD/ding-libs/")
|
||||||
(synopsis "Libraries for SSSD")
|
(synopsis "Libraries for SSSD")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue