rallly: simplified patches expression
Thanks srhb!
This commit is contained in:
parent
46f12e25b0
commit
24746a608e
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ let
|
||||||
|
|
||||||
ralllyPkgsOrig = pkgs.callPackage ./../../../../shared/pkgs/rallly {};
|
ralllyPkgsOrig = pkgs.callPackage ./../../../../shared/pkgs/rallly {};
|
||||||
ralllyPkgs = ralllyPkgsOrig.overrideAttrs (old: {
|
ralllyPkgs = ralllyPkgsOrig.overrideAttrs (old: {
|
||||||
patches = (if old ? patches then old.patches else []) ++ [
|
patches = (old.patches or []) ++ [
|
||||||
./patches/remove-login-register.patch
|
./patches/remove-login-register.patch
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue