From 52f45eb051df228955add90ca62de66a7ed8af34 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Isma=C3=ABl=20Bouya?= Date: Thu, 16 May 2019 10:57:32 +0200 Subject: [PATCH] Patch bundix to avoid raises at runtime MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Some things are missing in the lockfiles, but it’s unclear what. --- overlays/bundix/default.nix | 7 +++++++ overlays/default.nix | 1 + 2 files changed, 8 insertions(+) create mode 100644 overlays/bundix/default.nix 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; -- 2.41.0