mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: gnudatalanguage: Update to 1.1.1.
* gnu/packages/data-language.scm (gnudatalanguage): Update to 1.1.1. Change-Id: I2ffc591bd10f33e120639623ceb87ca96b6a3eae
This commit is contained in:
parent
a57bb78a8f
commit
cb13b18d26
1 changed files with 11 additions and 8 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
;;; Copyright © 2022 Antero Mejr <antero@mailbox.org>
|
||||||
|
;;; Copyright © 2025 Maxim Cournoyer <maxim@guixotic.coop>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -19,7 +20,7 @@
|
||||||
(define-module (gnu packages data-language)
|
(define-module (gnu packages data-language)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix build-system cmake)
|
#:use-module (guix build-system cmake)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages algebra)
|
#:use-module (gnu packages algebra)
|
||||||
|
@ -42,16 +43,17 @@
|
||||||
(define-public gnudatalanguage
|
(define-public gnudatalanguage
|
||||||
(package
|
(package
|
||||||
(name "gnudatalanguage")
|
(name "gnudatalanguage")
|
||||||
(version "1.0.1")
|
(version "1.1.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method url-fetch)
|
||||||
(uri (git-reference
|
(uri (string-append
|
||||||
(url "https://github.com/gnudatalanguage/gdl")
|
"https://github.com/gnudatalanguage/gdl/releases/download/v"
|
||||||
(commit (string-append "v" version))))
|
version "/gdl-v" version ".tar.gz"))
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1bb3nin3qrzx2dwdk08vffp4bblrcpv6vv1ybaj499qhqcpqpc12"))))
|
(base32
|
||||||
|
"0qln7851dpfy78yyx5k01ch2yrik3k1a1a2727rvpqf5rnmx6kkl"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config python python-numpy))
|
(list pkg-config python python-numpy))
|
||||||
|
@ -75,6 +77,7 @@
|
||||||
netcdf
|
netcdf
|
||||||
plplot
|
plplot
|
||||||
proj
|
proj
|
||||||
|
qhull
|
||||||
readline
|
readline
|
||||||
shapelib
|
shapelib
|
||||||
udunits
|
udunits
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue