nixpatches: fix date check to be based on when upstream nixpkgs was updated, not this repo

This commit is contained in:
Colin 2023-12-12 09:18:35 +00:00
parent 7969eb12d6
commit 6395e60f17

View File

@ -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";