guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/15: gnu: Add udunits.


From: guix-commits
Subject: 03/15: gnu: Add udunits.
Date: Sun, 24 Mar 2019 18:44:23 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 011ec1e51bc970173654babe63f8ec2fcec42eef
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Mar 24 23:17:31 2019 +0100

    gnu: Add udunits.
    
    * gnu/packages/c.scm (udunits): New variable.
---
 gnu/packages/c.scm | 34 ++++++++++++++++++++++++++++++++--
 1 file changed, 32 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 3b20e84..2629ebb 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -1,6 +1,6 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2016, 2018 Ludovic Courtès <address@hidden>
-;;; Copyright © 2016, 2017, 2018 Ricardo Wurmus <address@hidden>
+;;; Copyright © 2016, 2017, 2018, 2019 Ricardo Wurmus <address@hidden>
 ;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;; Copyright © 2018 Pierre Neidhardt <address@hidden>
 ;;; Copyright © 2019 Efraim Flashner <address@hidden>
@@ -38,7 +38,8 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages gettext)
-  #:use-module (gnu packages pkg-config))
+  #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages xml))
 
 (define-public tcc
   (package
@@ -257,3 +258,32 @@ typing conventions?
 every project that needs to deal with sizes in bytes.  It is written in the C
 language with thin bindings for other languages.")
     (license license:lgpl2.1+)))
+
+(define-public udunits
+  (package
+    (name "udunits")
+    (version "2.2.26")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "ftp://ftp.unidata.ucar.edu/pub/udunits/";
+                                  "udunits-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0v9mqw4drnkzkm57331ail6yvs9485jmi37s40lhvmf7r5lli3rn"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("expat" ,expat)))
+    (home-page "https://www.unidata.ucar.edu/software/udunits/";)
+    (synopsis "C library for units of physical quantities and value-conversion 
utils")
+    (description
+     "The UDUNITS-2 package provides support for units of physical quantities.
+Its three main components are:
+
address@hidden
address@hidden @code{udunits2lib}, a C library for units of physical quantities;
address@hidden @code{udunits2prog}, a utility for obtaining the definition of a 
unit
+  and for converting numeric values between compatible units; and
address@hidden an extensive database of units.
address@hidden enumerate\n")
+    ;; Like the BSD-3 license but with an extra anti patent clause.
+    (license (license:non-copyleft "file://COPYRIGHT"))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]