diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-15 18:20:38 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-09-15 18:47:00 +0200 |
commit | e9ff5d51e3297089e66c124195e1f1b42dbded65 (patch) | |
tree | ce3993c90b76a2275b57bf3231628966897ee122 /gnu/packages/django.scm | |
parent | 43cdc8a07517e936812782c313fe145bcf5c7ed3 (diff) | |
parent | b696fb41bc0dfcb7130a5aa6d69aff2ae191c283 (diff) |
Merge branch 'master' into gnome-team.
Diffstat (limited to 'gnu/packages/django.scm')
-rw-r--r-- | gnu/packages/django.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/django.scm b/gnu/packages/django.scm index b089954b6b..577789e988 100644 --- a/gnu/packages/django.scm +++ b/gnu/packages/django.scm @@ -34,6 +34,7 @@ #:use-module (guix gexp) #:use-module (guix build-system python) #:use-module (guix deprecation) + #:use-module (guix search-paths) #:use-module (gnu packages) #:use-module (gnu packages base) #:use-module (gnu packages compression) @@ -126,9 +127,7 @@ ;; Set TZDIR when 'tzdata' is available so that timezone functionality ;; works (mostly) out of the box in containerized environments. ;; Note: This search path actually belongs to 'glibc'. - (list (search-path-specification - (variable "TZDIR") - (files '("share/zoneinfo"))))) + (list $TZDIR)) (home-page "https://www.djangoproject.com/") (synopsis "High-level Python Web framework") (description |