blob: 661db0ed53290555f1b6dfdccc2e0e84f73d13ab (
plain)
1
2
3
4
5
6
7
8
9
|
self: super:
super.fzf.overrideAttrs (old: {
# XXX cannot use `patches` because fzf has a custom patchPhase
patchPhase = ''
patch -Np1 < ${./complete1.patch}
${old.patchPhase or ""}
'';
})
|