summaryrefslogtreecommitdiff
path: root/overlays/bundix/default.nix
blob: 6c4046cfe7da20e96452c558cc44e629ed5c7b6c (plain) (blame)
1
2
3
4
5
6
7
self: super: {
  bundix = super.bundix.overrideAttrs (old: {
    preBuild = (old.preBuild or "") + ''
      sed -i -e "/case obj/a\      when nil\n        nil" lib/bundix/nixer.rb
      '';
  });
}