summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2025-12-09 22:36:16 +0100
committerAndreas Enge <andreas@enge.fr>2026-01-23 23:37:21 +0100
commit1807cc331f30a693c9a7dc4ae1f0c14323ad43f8 (patch)
tree6dca19a966c15f6f02de3c0a980e8a51449a81a5 /gnu/packages
parent6cc152b5ee1f10905968de994d4746363b22bced (diff)
gnu: gnudatalanguage: Remove hdf4 from inputs.
* gnu/packages/data-language.scm (gnudatalanguage)[inputs]: Remove hdf4-alt. (arguments)<#:configure-flags>: Build without hdf4. Change-Id: I357927ead8f3bccde3530f076204a67d7e8cd79f Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/data-language.scm6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/data-language.scm b/gnu/packages/data-language.scm
index ea49effbbb4..b9eecbd4483 100644
--- a/gnu/packages/data-language.scm
+++ b/gnu/packages/data-language.scm
@@ -1,6 +1,7 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2022 Antero Mejr <antero@mailbox.org> 2;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
3;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop> 3;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop>
4;;; Copyright © 2025 Andreas Enge <andreas@enge.fr>
4;;; 5;;;
5;;; This file is part of GNU Guix. 6;;; This file is part of GNU Guix.
6;;; 7;;;
@@ -21,6 +22,7 @@
21 #:use-module ((guix licenses) #:prefix license:) 22 #:use-module ((guix licenses) #:prefix license:)
22 #:use-module (guix build-system cmake) 23 #:use-module (guix build-system cmake)
23 #:use-module (guix download) 24 #:use-module (guix download)
25 #:use-module (guix gexp)
24 #:use-module (guix packages) 26 #:use-module (guix packages)
25 #:use-module (gnu packages) 27 #:use-module (gnu packages)
26 #:use-module (gnu packages algebra) 28 #:use-module (gnu packages algebra)
@@ -66,7 +68,6 @@
66 glpk 68 glpk
67 graphicsmagick 69 graphicsmagick
68 gsl 70 gsl
69 hdf4-alt
70 hdf5 71 hdf5
71 libgeotiff 72 libgeotiff
72 libjpeg-turbo 73 libjpeg-turbo
@@ -83,6 +84,9 @@
83 udunits 84 udunits
84 wxwidgets 85 wxwidgets
85 zlib)) 86 zlib))
87 (arguments
88 (list
89 #:configure-flags #~(list "-DHDF=OFF"))) ; keep default "-DHDF5=ON"
86 (home-page "https://gnudatalanguage.github.io/") 90 (home-page "https://gnudatalanguage.github.io/")
87 (synopsis "Compiler for GDL, an IDL-compatible programming language") 91 (synopsis "Compiler for GDL, an IDL-compatible programming language")
88 (description 92 (description