guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: Add rust-configparser-2.


From: guix-commits
Subject: 05/07: gnu: Add rust-configparser-2.
Date: Mon, 15 Feb 2021 07:44:15 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit a6a566f20c2a75b29d02b19eaa9404e91381ba19
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon Feb 15 13:28:02 2021 +0100

    gnu: Add rust-configparser-2.
    
    * gnu/packages/crates-io.scm (rust-configparser-2): New variable.
---
 gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 6202326..5c0a2b5 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7632,6 +7632,27 @@ queue.")
 applications.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-configparser-2
+  (package
+    (name "rust-configparser")
+    (version "2.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "configparser" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1qdaggalm3js86s2i11pjjcndrrvpk0pw1lfvmv7v25z3y66sqg2"))))
+    (build-system cargo-build-system)
+    (arguments `(#:skip-build? #t))
+    (home-page "https://github.com/mexili/configparser-rs";)
+    (synopsis "Simple parsing utility for INI and ini-style syntax")
+    (description
+     "This package provides a simple configuration parsing utility with no
+dependencies that allows you to parse INI and ini-style syntax.  You can use
+this to write Rust programs which can be customized by end users easily.")
+    (license (list license:expat license:lgpl3+))))
+
 (define-public rust-console-0.14
   (package
     (name "rust-console")



reply via email to

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