synfigstudio: Refactor

This commit is contained in:
William A. Kennington III 2014-11-01 16:46:07 -07:00
parent 096e002f0b
commit d660565747

View File

@ -23,6 +23,11 @@ let
sha256 = "04mx321z929ngl65hfc1hv5jw37wqbh8y2avmpvajagvn6lp3zdl"; sha256 = "04mx321z929ngl65hfc1hv5jw37wqbh8y2avmpvajagvn6lp3zdl";
}; };
configureFlags = [
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.lib}/lib"
];
patches = [ ./synfig-cstring.patch ]; patches = [ ./synfig-cstring.patch ];
buildInputs = [ buildInputs = [
@ -44,6 +49,11 @@ stdenv.mkDerivation rec {
intltool libsigcxx libtool libxmlxx pkgconfig synfig intltool libsigcxx libtool libxmlxx pkgconfig synfig
]; ];
configureFlags = [
"--with-boost=${boost.dev}"
"--with-boost-libdir=${boost.lib}/lib"
];
preBuild = '' preBuild = ''
export FONTCONFIG_FILE=${fontsConf} export FONTCONFIG_FILE=${fontsConf}
''; '';