From 6395e60f17677408d0fbcb31a765fb32ce0315f3 Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 12 Dec 2023 09:18:35 +0000 Subject: [PATCH] nixpatches: fix date check to be based on when upstream nixpkgs was updated, not this repo --- nixpatches/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixpatches/flake.nix b/nixpatches/flake.nix index 90887129..ed247fd0 100644 --- a/nixpatches/flake.nix +++ b/nixpatches/flake.nix @@ -10,7 +10,7 @@ version = self.lastModifiedDate; src = nixpkgs; patches = builtins.filter (p: p != null) ( - nixpkgs.legacyPackages."${system}".callPackage ./list.nix { } variant self.lastModifiedDate + nixpkgs.legacyPackages."${system}".callPackage ./list.nix { } variant nixpkgs.lastModifiedDate ); }; patchedFlakeFor = system: import "${patchedPkgsFor system}/flake.nix";