about summary refs log tree commit diff
path: root/pkgs/tools/video/swfmill
diff options
context:
space:
mode:
authorJohn Chadwick <john@jchw.io>2023-05-13 11:14:11 -0400
committerJohn Chadwick <john@jchw.io>2023-05-13 13:17:39 -0400
commitf4785f6dd79d4215e8f3f15c2dbf85847bf25496 (patch)
tree1eca3298ff1a85bb64a47e77349692e4b249c699 /pkgs/tools/video/swfmill
parent3d4f58434e4c3fefaa7d31d388a52364fbdef8f4 (diff)
swfmill: add -lz to LDFLAGS explicitly
Diffstat (limited to 'pkgs/tools/video/swfmill')
-rw-r--r--pkgs/tools/video/swfmill/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/video/swfmill/default.nix b/pkgs/tools/video/swfmill/default.nix
index c2b0efbdec802..67ffc1bd69825 100644
--- a/pkgs/tools/video/swfmill/default.nix
+++ b/pkgs/tools/video/swfmill/default.nix
@@ -14,6 +14,9 @@ stdenv.mkDerivation rec {
   # Fixes build with GCC 6
   env.NIX_CFLAGS_COMPILE = "-std=c++03";
 
+  # Remove once updated past 0.3.5
+  env.NIX_LDFLAGS = "-lz";
+
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [ libxslt freetype libpng libxml2 ];