From d2aee666a0361acbdbedbe305f6181fb6981925e Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sun, 12 Jun 2022 14:56:52 -0400 Subject: [PATCH] fix(patches/coreutils): remove old.patches reference --- overlays/patches/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/patches/default.nix b/overlays/patches/default.nix index 1d2dba5..2355303 100644 --- a/overlays/patches/default.nix +++ b/overlays/patches/default.nix @@ -1,5 +1,5 @@ final: prev: { coreutils-doge = prev.coreutils.overrideAttrs (old: { - patches = old.patches ++ [ ./coreutils.patch ]; + patches = [ ./coreutils.patch ]; }); }