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:41:44 -0400
committerJohn Chadwick <john@jchw.io>2023-05-13 14:50:05 -0400
commit64825e22936b1bcf4955579c12d2f0f535302428 (patch)
tree8abb639b56a414cfea233dae1635fdd2900dcfb9 /pkgs/tools/video/swfmill
parent15ad57a3f7c8a775e9ccd707fef1080719908e51 (diff)
swfmill: 0.3.3 -> 0.3.6
Diffstat (limited to 'pkgs/tools/video/swfmill')
-rw-r--r--pkgs/tools/video/swfmill/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/tools/video/swfmill/default.nix b/pkgs/tools/video/swfmill/default.nix
index 67ffc1bd69825..28d7e0039edd2 100644
--- a/pkgs/tools/video/swfmill/default.nix
+++ b/pkgs/tools/video/swfmill/default.nix
@@ -4,19 +4,13 @@
 
 stdenv.mkDerivation rec {
   pname = "swfmill";
-  version = "0.3.3";
+  version = "0.3.6";
 
   src = fetchurl {
     url = "http://swfmill.org/releases/swfmill-${version}.tar.gz";
-    sha256 = "15mcpql448vvgsbxs7wd0vdk1ln6rdcpnif6i2zjm5l4xng55s7r";
+    sha256 = "sha256-2yT2OWOVf67AK7FLi2HNr3CWd0+M/eudNXPi4ZIxVI4=";
   };
 
-  # 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 ];