3
0
Fork 0
forked from mirrors/nixpkgs

add static variant for sdf bundle

svn path=/nixpkgs/trunk/; revision=18306
This commit is contained in:
Rob Vermaas 2009-11-09 09:53:57 +00:00
parent 4f906f38a8
commit 0a56e71716

View file

@ -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";