New comment by ericonr on void-packages repository https://github.com/void-linux/void-packages/pull/24723#issuecomment-688812637 Comment: You need the whole patch, but without the prefix in the path, so the patch from there: ``` From 7dcd30d810d29c2bf2ae61c7947d183255b1844e Mon Sep 17 00:00:00 2001 From: Fabrizio Ferrai Date: Thu, 3 Sep 2020 12:09:30 +0200 Subject: [PATCH] Drop dependency on libtinfo (#684) --- stack.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stack.yaml b/stack.yaml index ae14f29f..d688acf5 100644 --- a/stack.yaml +++ b/stack.yaml @@ -44,3 +44,8 @@ extra-deps: allow-newer: true nix: packages: [zlib] + +# This is so we don't depend on libtinfo +flags: + haskeline: + terminfo: false \ No newline at end of file ``` Should become ``` From 7dcd30d810d29c2bf2ae61c7947d183255b1844e Mon Sep 17 00:00:00 2001 From: Fabrizio Ferrai Date: Thu, 3 Sep 2020 12:09:30 +0200 Subject: [PATCH] Drop dependency on libtinfo (#684) --- stack.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stack.yaml b/stack.yaml index ae14f29f..d688acf5 100644 --- stack.yaml +++ stack.yaml @@ -44,3 +44,8 @@ extra-deps: allow-newer: true nix: packages: [zlib] + +# This is so we don't depend on libtinfo +flags: + haskeline: + terminfo: false \ No newline at end of file ```