diff options
Diffstat (limited to 'overlays/doing')
-rw-r--r-- | overlays/doing/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/overlays/doing/default.nix b/overlays/doing/default.nix new file mode 100644 index 0000000..7f95fb6 --- /dev/null +++ b/overlays/doing/default.nix | |||
@@ -0,0 +1,10 @@ | |||
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 | } | ||