per-system-optim/nixpkgs/default.nix

14 lines
171 B
Nix
Raw Normal View History

2023-06-02 06:29:02 +00:00
{
nixpkgs,
applyPatches,
}:
applyPatches {
name = "nixpkgs-patched";
src = nixpkgs;
2023-07-25 10:11:01 +00:00
patches = [
./nixpkgs.patch
./245332.patch
2023-07-26 12:25:40 +00:00
./bugfix.patch
2023-07-25 10:11:01 +00:00
];
2023-06-02 06:29:02 +00:00
}