From cf78d0c359d52230743524a2007d6fd9825a3bf1 Mon Sep 17 00:00:00 2001 From: Julien Malka Date: Sun, 12 Dec 2021 11:22:39 +0100 Subject: [PATCH] Trying to reapply some fixs --- utils.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.nix b/utils.nix index 095a1d4..ab6302f 100644 --- a/utils.nix +++ b/utils.nix @@ -22,7 +22,7 @@ in (final: prev: { mosh = prev.mosh.overrideAttrs (old: { - patches = []; + patches = (prev.lib.take 1 old.patches) ++ (prev.lib.sublist 4 4 old.patches); postPatch = ''''; buildInputs = with prev; [ protobuf ncurses zlib openssl ] ++ (with perlPackages; [ perl IOTty ])