From: Ismaël Bouya Date: Thu, 16 May 2019 08:57:32 +0000 (+0200) Subject: Patch bundix to avoid raises at runtime X-Git-Tag: nur_publish~14 X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=commitdiff_plain;h=52f45eb051df228955add90ca62de66a7ed8af34 Patch bundix to avoid raises at runtime Some things are missing in the lockfiles, but it’s unclear what. --- 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 @@ +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 + ''; + }); +} diff --git a/overlays/default.nix b/overlays/default.nix index 501be73..408515e 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -3,6 +3,7 @@ mypkgs = self: super: import ../pkgs { pkgs = self; }; bitlbee = import ./bitlbee; + bundix = import ./bundix; dwm = import ./dwm; elinks = import ./elinks; gitweb = import ./gitweb;