guix-commits
[Top][All Lists]
Advanced

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

02/15: gnu: python-django-jinja: Don't use unstable tarball.


From: guix-commits
Subject: 02/15: gnu: python-django-jinja: Don't use unstable tarball.
Date: Tue, 26 Nov 2019 13:58:09 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 9f00d13d5dc720dbbe1ec95c48a2c8a15c0b40c4
Author: Efraim Flashner <address@hidden>
Date:   Tue Nov 26 20:27:24 2019 +0200

    gnu: python-django-jinja: Don't use unstable tarball.
    
    * gnu/packages/django.scm (python-django-jinja)[source]: Download using
    git-fetch.
---
 gnu/packages/django.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm
index c47ea44..7e7bc5d 100644
--- a/gnu/packages/django.scm
+++ b/gnu/packages/django.scm
@@ -456,14 +456,14 @@ merging, minifying and compiling CSS and Javascript 
files.")
     (version "2.4.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append
-             "https://github.com/niwinz/django-jinja/archive/";
-             version ".tar.gz"))
-       (file-name (string-append name "-" version ".tar.gz"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/niwinz/django-jinja.git";)
+             (commit version)))
+       (file-name (git-file-name name version))
        (sha256
         (base32
-         "0bzrb4m6wx9ph5cpvz7wpvg5k6ksvj0dnxlg0nhhqskhvp46brs1"))))
+         "1fcrxlznlq1xvl26y3j1r22vvy6m08r5l97xi2wj50rdmxhfvhis"))))
     (build-system python-build-system)
     (propagated-inputs
      `(("python-django" ,python-django)



reply via email to

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