From 9582b05b43a4550840a212a52af83d6aaca52d74 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Mon, 24 Nov 2025 17:20:58 +0100 Subject: [PATCH] Overlays/Rmpc: Remove version override as v0.10.0 is in nixpkgs now --- overlays/default.nix | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/overlays/default.nix b/overlays/default.nix index 573a259c..b5772db3 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -29,6 +29,7 @@ # Remove this after jetbrains.jdk builds again (nixpkgs issue 425328) # jetbrains.rider = pkgs-stable.jetbrains.rider; + # Now in Nixpkgs # neovide = prev.neovide.overrideAttrs (finalAttrs: prevAttrs: { # version = "0.15.1"; # src = prev.fetchFromGitHub { @@ -44,20 +45,21 @@ # }; # }); - rmpc = prev.rmpc.overrideAttrs (finalAttrs: prevAttrs: { - version = "0.10.0"; - src = prev.fetchFromGitHub { - owner = "mierak"; - repo = "rmpc"; - rev = "v0.10.0"; - hash = "sha256-NU8T26oPhm8L7wdO4p65cpNa0pax7/oqHGs98QDoEc0="; - }; - cargoHash = "sha256-d2/4q2s/11HNE18D8d8Y2yWidhT+XsUS4J9ahnxToI0="; - cargoDeps = prev.rustPlatform.fetchCargoVendor { - inherit (finalAttrs) pname src version; - hash = finalAttrs.cargoHash; - }; - }); + # Now in Nixpkgs + # rmpc = prev.rmpc.overrideAttrs (finalAttrs: prevAttrs: { + # version = "0.10.0"; + # src = prev.fetchFromGitHub { + # owner = "mierak"; + # repo = "rmpc"; + # rev = "v0.10.0"; + # hash = "sha256-NU8T26oPhm8L7wdO4p65cpNa0pax7/oqHGs98QDoEc0="; + # }; + # cargoHash = "sha256-d2/4q2s/11HNE18D8d8Y2yWidhT+XsUS4J9ahnxToI0="; + # cargoDeps = prev.rustPlatform.fetchCargoVendor { + # inherit (finalAttrs) pname src version; + # hash = finalAttrs.cargoHash; + # }; + # }); }; in # Composes a list of overlays and returns a single overlay function that combines them.