guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/12: gnu: ding-libs: Build from Git.


From: guix-commits
Subject: 04/12: gnu: ding-libs: Build from Git.
Date: Sat, 4 Jun 2022 14:31:15 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit b00f2728d81bc348528aaed2d1940494df01a6de
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun May 29 02:00:00 2022 +0200

    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.
---
 gnu/packages/sssd.scm | 19 +++++++++++--------
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/sssd.scm b/gnu/packages/sssd.scm
index 2b4322d6d8..562d4c1045 100644
--- a/gnu/packages/sssd.scm
+++ b/gnu/packages/sssd.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; 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 © 2021 Timotej Lazar <timotej.lazar@araneo.si>
 ;;; Copyright © 2021, 2022 Remco van 't Veer <remco@remworks.net>
@@ -123,14 +123,17 @@ manage user, group and computer accounts for a domain.")
   (package
     (name "ding-libs")
     (version "0.6.1")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "https://releases.pagure.org/SSSD/ding-libs/";
-                                  "ding-libs-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1h97mx2jdv4caiz4r7y8rxfsq78fx0k4jjnfp7x2s7xqvqks66d3"))))
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/SSSD/ding-libs";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0127cpslqkapwx1rp4d1w13gw62m4cwf3hj8r0nnmvihs4199270"))))
     (build-system gnu-build-system)
+    (native-inputs (list autoconf automake libtool pkg-config))
     (home-page "https://pagure.io/SSSD/ding-libs/";)
     (synopsis "Libraries for SSSD")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]