9 lines
125 B
Nix
9 lines
125 B
Nix
{
|
|
nixpkgs,
|
|
applyPatches,
|
|
}:
|
|
applyPatches {
|
|
name = "nixpkgs-patched";
|
|
src = nixpkgs;
|
|
patches = [./nixpkgs.patch];
|
|
}
|