[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/09: gnu: Add giza
From: |
guix-commits |
Subject: |
07/09: gnu: Add giza |
Date: |
Mon, 4 Jul 2022 06:30:05 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit e8e7b4cdae251abebf4ae139d02e8369cc90fd01
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sun Jun 26 22:28:33 2022 +0100
gnu: Add giza
* gnu/packages/maths.scm (giza): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/maths.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6edf36d928..36431a4be8 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -51,6 +51,7 @@
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Pierre-Antoine Bouttier
<pierre-antoine.bouttier@univ-grenoble-alpes.fr>
;;; Copyright © 2022 Zhu Zihao <all_but_last@163.com>
+;;; Copyright © 2022 Sharlatan Hellseher <sharlatanus@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1092,6 +1093,31 @@ a pipe or file, make a variety of transformations, and
render the result
in the terminal or with an external viewer.")
(license license:gpl1+))) ;any version
+(define-public giza
+ (package
+ (name "giza")
+ (version "1.3.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/danieljprice/giza")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32 "1clklh3nzgwrwg80h3k5x65gdymbvcc84c44nql7m4bv9b8rqfsq"))
+ (file-name (git-file-name name version))))
+ (build-system gnu-build-system)
+ (native-inputs
+ (list perl pkg-config))
+ (inputs
+ (list cairo freetype gfortran))
+ (home-page "https://danieljprice.github.io/giza/")
+ (synopsis "Scientific plotting library for C/Fortran")
+ (description
+ "Giza is a lightweight scientific plotting library built on top of
+@code{cairo} that provides uniform output to multiple devices.")
+ (license license:gpl2+)))
+
(define-public gnuplot
(package
(name "gnuplot")
- branch master updated (7cddd130df -> 31e4eaf52c), guix-commits, 2022/07/04
- 03/09: gnu: z3: Prefer CMake to build the package., guix-commits, 2022/07/04
- 05/09: gnu: Add fmt-for-solidity., guix-commits, 2022/07/04
- 06/09: gnu: solidity: Update to 0.8.15., guix-commits, 2022/07/04
- 01/09: gnu: z3: Use G-expressions., guix-commits, 2022/07/04
- 02/09: gnu: z3: Update to 4.8.17., guix-commits, 2022/07/04
- 07/09: gnu: Add giza,
guix-commits <=
- 04/09: gnu: solidity: Use G-expressions., guix-commits, 2022/07/04
- 08/09: gnu: vpnc: Fix cross-compilation., guix-commits, 2022/07/04
- 09/09: gnu: vpnc: Add bsd-2 license., guix-commits, 2022/07/04