3
0
Fork 0
forked from mirrors/nixpkgs

x264: split the lib output

This commit is contained in:
Vladimír Čunát 2015-10-11 16:25:44 +02:00
parent 9da12a6713
commit 493c947e4a

View file

@ -13,6 +13,8 @@ stdenv.mkDerivation rec {
sed -i s,/bin/bash,${stdenv.shell}, configure version.sh
'';
outputs = [ "out" "lib" ]; # leaving 52 kB of headers
configureFlags = [ "--enable-shared" ]
++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic"
++ stdenv.lib.optional (enable10bit) "--bit-depth=10";