10 lines
218 B
Nix
10 lines
218 B
Nix
|
_self: prev:
|
||
|
{
|
||
|
tandoor-recipes = prev.tandoor-recipes.overrideAttrs (oa: {
|
||
|
patches = (oa.patches or [ ]) ++ [
|
||
|
# https://github.com/TandoorRecipes/recipes/pull/2706
|
||
|
./bump-allauth.patch
|
||
|
];
|
||
|
});
|
||
|
}
|