From bd9ab76568ab7b226b88a1b37258a2e81d6dec80 Mon Sep 17 00:00:00 2001 From: panva <241506+panva@users.noreply.github.com> Date: Sun, 19 Apr 2026 07:03:50 +0000 Subject: [PATCH] tools: update nixpkgs-unstable to ab72be9733b41190ea34f1422a3e4e243ed Signed-off-by: Filip Skokan --- tools/nix/pkgs.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/tools/nix/pkgs.nix b/tools/nix/pkgs.nix index f4dab340752819..989c515b31b11f 100644 --- a/tools/nix/pkgs.nix +++ b/tools/nix/pkgs.nix @@ -1,21 +1,10 @@ arg: let repo = "https://github.com/NixOS/nixpkgs"; - rev = "13043924aaa7375ce482ebe2494338e058282925"; + rev = "ab72be9733b41190ea34f1422a3e4e243ede7533"; nixpkgs = import (builtins.fetchTarball { url = "${repo}/archive/${rev}.tar.gz"; - sha256 = "1pbv1c3syp94rh147s2nhbzfcib01blz3s7g290m43s3nk71404z"; + sha256 = "1a720dxki2ymwiwdjn8awgpinigz5wsnxg2mmpy1s2b2wyy3gmz1"; }) arg; in nixpkgs -// { - nixfmt-tree = nixpkgs.nixfmt-tree.overrideAttrs (old: { - patches = (old.patches or [ ]) ++ [ - (nixpkgs.fetchpatch2 { - url = "https://github.com/numtide/treefmt/commit/b96016b4e38ffc76518087b3b0c9bbfa190d5225.patch?full_index=1"; - revert = true; - hash = "sha256-DcxT2OGPX6Kmxhqa56DjZsSh2hoyhPyVmE17ULeryv8="; - }) - ]; - }); -}