all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer.
@ 2023-07-19  2:26 Distopico
  2023-07-29 18:44 ` Liliana Marie Prikler
                   ` (2 more replies)
  0 siblings, 3 replies; 17+ messages in thread
From: Distopico @ 2023-07-19  2:26 UTC (permalink / raw)
  To: 64720; +Cc: Distopico, efraim

Fixes build of rust-analyzer version 2022-01-10 that requires pined version of
rust-notify which is `rust-notify-pre.13`.

I'm working to update `rust-analizer` to 2023-07-17 but it require add more
packages and update other, it's a WIP but for now this is just to fix the build.

* gnu/packages/crates-io.scm (rust-notify-5-pre.13): New variable.
* gnu/packages/rust-apps.scm
---
 gnu/packages/crates-io.scm | 13 +++++++++++++
 gnu/packages/rust-apps.scm |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f9574e2797..5dd9e0d349 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -38927,6 +38927,19 @@ (define-public rust-notify-5
 notification library.")
     (license (list license:cc0 license:artistic2.0))))
 
+(define-public rust-notify-5-pre.13
+  (package
+    (inherit rust-notify-5)
+    (name "rust-notify")
+    (version "5.0.0-pre.13")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "notify" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0za8mpacxkr62fii5h7ny4h396y0m8myd3hf08njqdg2h21kap94"))))))
+
 (define-public rust-notify-4
   (package
     (inherit rust-notify-5)
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm
index 8c29969712..0571af498c 100644
--- a/gnu/packages/rust-apps.scm
+++ b/gnu/packages/rust-apps.scm
@@ -1775,7 +1775,7 @@ (define-public rust-analyzer
         ("rust-memmap2" ,rust-memmap2-0.5)
         ("rust-mimalloc" ,rust-mimalloc-0.1)
         ("rust-miow" ,rust-miow-0.4)
-        ("rust-notify" ,rust-notify-5)
+        ("rust-notify" ,rust-notify-5-pre.13)
         ("rust-object" ,rust-object-0.28)
         ("rust-once-cell" ,rust-once-cell-1)
         ("rust-parking-lot" ,rust-parking-lot-0.11)

base-commit: 917a299831361f253ea664f009176b4bbe06900a
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 17+ messages in thread

end of thread, other threads:[~2023-09-09 13:32 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-07-19  2:26 [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Distopico
2023-07-29 18:44 ` Liliana Marie Prikler
2023-08-05  2:27   ` [bug#64720] [PATCH 0/2] Fix build of rust-analyzer v2022-01-10 Distopico
2023-08-05  2:40   ` [bug#64720] [PATCH 1/2] gnu: Add rust-notify-5-pre.13 Distopico
2023-08-05  2:40     ` [bug#64720] [PATCH 2/2] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico
2023-08-16 21:09       ` [bug#64720] [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès
2023-08-30 20:34         ` Distopico
2023-08-30 19:50 ` [bug#64720] [PATCH 0/8] " Distopico
2023-08-30 19:58 ` [bug#64720] [PATCH v2 1/8] gnu: Add rust-notify-5-pre.13 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 2/8] gnu: rust-analyzer: Fix build of version 2022-01-10 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 3/8] gnu: Add rust-either-1.6.0 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 4/8] gnu: Add rust-proc-macro2-1.0.34 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 5/8] gnu: Add rust-quote-1.0.10 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 6/8] gnu: Add rust-serde-json-1.0.73 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 7/8] gnu: Add rust-trybuild-1.0.19 Distopico
2023-08-30 19:58   ` [bug#64720] [PATCH v2 8/8] gnu: rust-analyzer: update required dependencies version Distopico
2023-09-09 13:31     ` bug#64720: [PATCH] gnu: rust-analyzer: Fix build of rust-analyzer Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.