diff options
author | phodina <phodina@protonmail.com> | 2021-10-13 22:11:54 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-11-04 20:09:53 +0200 |
commit | 575fcd3045ff1649e5319b6701ff9e28e97793e0 (patch) | |
tree | cba797560d002c1565cff20594653387148ba252 /gnu/packages/patches | |
parent | b30e2834f7f3cc16689a31195637f452426ce3d0 (diff) | |
download | guix-575fcd3045ff1649e5319b6701ff9e28e97793e0.tar guix-575fcd3045ff1649e5319b6701ff9e28e97793e0.tar.gz |
gnu: Add i3status-rust.
* gnu/packages/rust-apps.scm (i3status-rust): New variable.
* gnu/packages/patches/i3status-rust-enable-unstable-features.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/patches')
-rw-r--r-- | gnu/packages/patches/i3status-rust-enable-unstable-features.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/patches/i3status-rust-enable-unstable-features.patch b/gnu/packages/patches/i3status-rust-enable-unstable-features.patch new file mode 100644 index 0000000000..535b45d865 --- /dev/null +++ b/gnu/packages/patches/i3status-rust-enable-unstable-features.patch @@ -0,0 +1,20 @@ +From 3006390c0058f06c255d9850327163aebcdc3b40 Mon Sep 17 00:00:00 2001 +From: Petr Hodina <phodina@protonmail.com> +Date: Mon, 11 Oct 2021 22:35:39 +0200 +Subject: [PATCH] Enable unstable features. + + +diff --git a/src/main.rs b/src/main.rs +index d9e964b..820e22e 100644 +--- a/src/main.rs ++++ b/src/main.rs +@@ -1,3 +1,6 @@ ++#![feature(bool_to_option)] ++#![feature(clamp)] ++ + #[macro_use] + mod de; + #[macro_use] +-- +2.33.0 + |