]> git.immae.eu Git - perso/Immae/Config/Nix.git/blob - overlays/doing/default.nix
Add doing overlay
[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 }