diff options
author | Marius Bakke <mbakke@fastmail.com> | 2020-01-07 14:28:09 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2020-01-07 18:18:12 +0100 |
commit | 517c55381e190b2d6bdba95c45a6c895831b9721 (patch) | |
tree | 2dbe7d7e2116fa9218910acb1d69389ba6970706 /gnu/packages/geo.scm | |
parent | 2536027cc5b547109953aa31b79f9a507985850d (diff) | |
download | patches-517c55381e190b2d6bdba95c45a6c895831b9721.tar patches-517c55381e190b2d6bdba95c45a6c895831b9721.tar.gz |
gnu: libgeotiff: Propagate proj.
* gnu/packages/geo.scm (libgeotiff)[inputs]: Move PROJ ...
[propagated-inputs]: ... here. New field.
Diffstat (limited to 'gnu/packages/geo.scm')
-rw-r--r-- | gnu/packages/geo.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/geo.scm b/gnu/packages/geo.scm index 8e8e6dbe3b..df65c75154 100644 --- a/gnu/packages/geo.scm +++ b/gnu/packages/geo.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz> ;;; Copyright © 2019 Hartmut Goebel <h.goebel@crazy-compilers.com> +;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -252,8 +253,10 @@ and driving.") (inputs `(("libjpeg-turbo" ,libjpeg-turbo) ("libtiff" ,libtiff) - ("proj" ,proj) ("zlib" ,zlib))) + (propagated-inputs + `(;; libgeotiff headers include proj headers, so ensure those are available. + ("proj" ,proj))) (arguments `(#:configure-flags (list (string-append "--with-zlib") |