Compare commits
2 commits
b916e4ac4d
...
b234bdbd06
Author | SHA1 | Date | |
---|---|---|---|
b234bdbd06 | |||
be2bc72968 |
1 changed files with 16 additions and 0 deletions
16
overlays/fixes.nix
Normal file
16
overlays/fixes.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ lib, ... }:
|
||||||
|
|
||||||
|
final: prev: {
|
||||||
|
# python-poetry/poetry#5929
|
||||||
|
poetry = final.symlinkJoin {
|
||||||
|
name = "poetry";
|
||||||
|
paths = [ prev.poetry ];
|
||||||
|
postBuild =
|
||||||
|
let
|
||||||
|
regex = "s/'([a-z]*[[:blank:]][a-z]*)''/\1'/g";
|
||||||
|
in
|
||||||
|
''
|
||||||
|
${lib.getExe final.gnused} -i -E "${regex}" "$out/share/fish/vendor_completions.d/poetry.fish"
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue