guix-commits
[Top][All Lists]
Advanced

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

268/424: gnu: Add rust-any-all-workaround-0.1.


From: guix-commits
Subject: 268/424: gnu: Add rust-any-all-workaround-0.1.
Date: Sun, 10 Nov 2024 05:42:21 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit cdc15af3b3c016b0cd66c1238302f5df37eeb50b
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Sep 29 15:37:50 2024 +0300

    gnu: Add rust-any-all-workaround-0.1.
    
    * gnu/packages/crates-io.scm (rust-any-all-workaround-0.1): New variable.
    
    Change-Id: I126a0853b77b6fc875cabce4daa4d52be9a5079c
---
 gnu/packages/crates-io.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index fe2a305a88..1987949279 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2210,6 +2210,28 @@ writing colored text to a terminal.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-any-all-workaround-0.1
+  (package
+    (name "rust-any-all-workaround")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "any_all_workaround" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "11ifmzawvvi6d4r1lk0dkdnbswf574npgkika4535k7j6l3s9zl8"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build? #t ; `#![feature]` may not be used on the stable release 
channel
+       #:cargo-inputs (("rust-cfg-if" ,rust-cfg-if-1))))
+    (home-page "https://docs.rs/any_all_workaround/";)
+    (synopsis "Workaround for bad LLVM codegen for boolean reductions on 
32-bit ARM")
+    (description
+     "This package provides Workaround for bad LLVM codegen for boolean
+reductions on 32-bit ARM.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-anyhow-1
   (package
     (name "rust-anyhow")



reply via email to

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