From 79f4a6b9073ea6e5dca3b8deda40c772b7cfd2b6 Mon Sep 17 00:00:00 2001 From: chayleaf Date: Wed, 27 Nov 2024 15:37:41 +0700 Subject: [PATCH] bump nix version --- pkgs/nix-plugins-overlay.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/nix-plugins-overlay.nix b/pkgs/nix-plugins-overlay.nix index a80c81f..1e3b913 100644 --- a/pkgs/nix-plugins-overlay.nix +++ b/pkgs/nix-plugins-overlay.nix @@ -1,7 +1,7 @@ { pkgs, ... }: let - unpatchedNixForNixPlugins = pkgs.nixVersions.nix_2_18; + unpatchedNixForNixPlugins = pkgs.nixVersions.nix_2_24; nixForNixPlugins = unpatchedNixForNixPlugins.overrideAttrs (old: { patches = (old.patches or [ ]) ++ [ ./rename-nix-plugin-files.patch ]; # some tests fail on bcachefs due to insufficient permissions @@ -20,9 +20,9 @@ in { }) ]; });*/ - hydra_unstable = (pkgs.hydra_unstable.override { + hydra = (pkgs.hydra.override { nix = nixForNixPlugins; - }).overrideAttrs (old: { + })/*.overrideAttrs (old: { version = "2023-12-01"; # who cares about tests amirite doCheck = false; @@ -30,5 +30,5 @@ in { rev = "4d1c8505120961f10897b8fe9a070d4e193c9a13"; hash = "sha256-vXTuE83GL15mgZHegbllVAsVdDFcWWSayPfZxTJN5ys="; }; - }); + })*/; }