guix-commits
[Top][All Lists]
Advanced

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

04/53: gnu: Add rust-xdg.


From: guix-commits
Subject: 04/53: gnu: Add rust-xdg.
Date: Wed, 28 Aug 2019 09:55:00 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit dac3fc6974193597a3343b1d5c6283a8ebdf8d3f
Author: Efraim Flashner <address@hidden>
Date:   Wed Aug 28 14:59:58 2019 +0300

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

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 2ead1c5..b255cfe 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1124,3 +1124,23 @@ x86_64-pc-windows-gnu target.  Please don't use this 
crate directly, depend on
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-xdg
+  (package
+    (name "rust-xdg")
+    (version "2.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "xdg" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "0mws8a0fr3cqk5nh7aq9lmkmhzghvasqy4mhw6nnza06l4d6i2fh"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/whitequark/rust-xdg";)
+    (synopsis "Store and retrieve files according to XDG specification")
+    (description
+     "This package provides a library for storing and retrieving files 
according
+to XDG Base Directory specification")
+    (license (list license:asl2.0
+                   license:expat))))



reply via email to

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