guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add rust-c-linked-list-1.


From: guix-commits
Subject: 01/06: gnu: Add rust-c-linked-list-1.
Date: Thu, 15 Jul 2021 08:58:07 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 1605b444f3fb4b9a8124b3816d5a10a65ac11bb4
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Jul 8 04:08:31 2021 +0000

    gnu: Add rust-c-linked-list-1.
    
    * gnu/packages/crates-io.scm (rust-c-linked-list-1): New variable.
    
    Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
 gnu/packages/crates-io.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e1ea40f..85f1c3c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -6646,6 +6646,25 @@ representation, with support for both SI and binary 
units.")
 exposed as Reader/Writer streams.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-c-linked-list-1
+  (package
+    (name "rust-c-linked-list")
+    (version "1.1.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "c_linked_list" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0jvjr3233wqgx6li65kciqpg354pvb0cv1i8hc71ka5lsf5m2r29"))))
+    (build-system cargo-build-system)
+    (home-page "https://canndrew.org/rust-doc/c_linked_list/";)
+    (synopsis "Utilities for handling NULL-terminated C linked lists")
+    (description "This package provides utilities for handling
+NULL-terminated C linked lists.")
+    (license (list license:expat license:bsd-3))))
+
 (define-public rust-c2-chacha-0.2
   (package
     (name "rust-c2-chacha")



reply via email to

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