From f13a285287e85f099ab55328460096a9282bcafe Mon Sep 17 00:00:00 2001 From: xeals Date: Sun, 25 Oct 2020 12:28:47 +1100 Subject: [PATCH] alacritty-ligatures: bump rustPackages version nixos-unstable removed 1.44 while nixpkgs-unstable still has it (why?), so 1.45 is the new lowest common version. --- default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/default.nix b/default.nix index b390f27..3eebbef 100644 --- a/default.nix +++ b/default.nix @@ -16,9 +16,7 @@ rec { # Alacritty with the unmerged ligature patches applied. alacritty-ligatures = (pkgs.alacritty.override { - # 0.6.0 requires a minimum of 1.43, and this is the only version on both - # stable and unstable channels right now. - inherit (pkgs.rustPackages_1_44) rustPlatform; + inherit (pkgs.rustPackages_1_45) rustPlatform; }).overrideAttrs (oldAttrs: rec { pname = "${oldAttrs.pname}-ligatures"; version = "0.6.0.20201015";