aboutsummaryrefslogtreecommitdiff
path: root/overlays/doing/default.nix
blob: 7f95fb636afd4681819d4d12973b9623d1eaa405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
self: super: {
  defaultGemConfig = super.defaultGemConfig // {
    doing = attrs: {
      postInstall = ''
        installPath=$(cat $out/nix-support/gem-meta/install-path)
        sed -i $installPath/lib/doing/wwid.rb -e "/Create a backup copy for the undo command/ {n;d}"
      '';
    };
  };
}