aboutsummaryrefslogtreecommitdiff
path: root/overlays/bundix
diff options
context:
space:
mode:
Diffstat (limited to 'overlays/bundix')
-rw-r--r--overlays/bundix/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/overlays/bundix/default.nix b/overlays/bundix/default.nix
new file mode 100644
index 0000000..6c4046c
--- /dev/null
+++ b/overlays/bundix/default.nix
@@ -0,0 +1,7 @@
1self: super: {
2 bundix = super.bundix.overrideAttrs (old: {
3 preBuild = (old.preBuild or "") + ''
4 sed -i -e "/case obj/a\ when nil\n nil" lib/bundix/nixer.rb
5 '';
6 });
7}