guix-commits
[Top][All Lists]
Advanced

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

118/285: gnu: tidy-html: Don't use unstable tarball.


From: guix-commits
Subject: 118/285: gnu: tidy-html: Don't use unstable tarball.
Date: Sun, 29 Dec 2019 20:44:12 -0500 (EST)

kkebreau pushed a commit to branch wip-gnome3.34
in repository guix.

commit 8497d103b68d3318fce6ad67b1bcdf2c3a2ad536
Author: Efraim Flashner <address@hidden>
Date:   Tue Dec 24 18:22:21 2019 +0200

    gnu: tidy-html: Don't use unstable tarball.
    
    * gnu/packages/web.scm (tidy-html)[source]: Download using git-fetch.
---
 gnu/packages/web.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 3ee3d88..851c66b 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5370,16 +5370,17 @@ used to start services with both privileged and 
non-privileged port numbers.")
     (version "5.6.0")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/htacg/tidy-html5/archive/";
-                           version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/htacg/tidy-html5";)
+              (commit version)))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0n29wcgw32rhnraj9j21ibhwi0xagmmcskhbaz8ihxly7nx3p9h8"))))
+         "0w175c5d1babq0w1zzdzw9gl6iqbgyq58v8587s7srp05y3hwy9k"))))
     (build-system cmake-build-system)
     (outputs '("out"
-               "static"))               ; 1.0MiB of .a files
+               "static"))               ; 1.3MiB of .a files
     (arguments
      `(#:tests? #f                      ; no tests available
        #:build-type "Release"



reply via email to

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