]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/doing/default.nix
7f95fb636afd4681819d4d12973b9623d1eaa405
[perso/Immae/Config/Nix.git] / overlays / doing / default.nix
1 self: super: {
2 defaultGemConfig = super.defaultGemConfig // {
3 doing = attrs: {
4 postInstall = ''
5 installPath=$(cat $out/nix-support/gem-meta/install-path)
6 sed -i $installPath/lib/doing/wwid.rb -e "/Create a backup copy for the undo command/ {n;d}"
7 '';
8 };
9 };
10 }