diff --git a/pkgs/development/compilers/strategoxt/0.18.nix b/pkgs/development/compilers/strategoxt/0.18.nix index f0380d25e7d..393b6ae1bcb 100644 --- a/pkgs/development/compilers/strategoxt/0.18.nix +++ b/pkgs/development/compilers/strategoxt/0.18.nix @@ -4,6 +4,12 @@ rec { inherit aterm; + sdfStatic = stdenv.mkDerivation ( rec { + name = "${sdf.name}-static"; + configureFlags = "--enable-shared=no --enable-static=yes"; + + inherit (sdf) src buildInputs preConfigure meta; + } // ( if stdenv.system == "i686-cygwin" then { inherit (sdf) CFLAGS; } else {} ) ) ; sdf = stdenv.mkDerivation ( rec { name = "sdf2-bundle-2.4";