x264: fix static build
This commit is contained in:
parent
90691042af
commit
394315def1
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
{ stdenv, lib, fetchurl, nasm }:
|
{ stdenv, lib, fetchurl, nasm
|
||||||
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "x264";
|
pname = "x264";
|
||||||
|
@ -28,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||||
export AS=$CC
|
export AS=$CC
|
||||||
'';
|
'';
|
||||||
|
|
||||||
configureFlags = [ "--enable-shared" ]
|
configureFlags = lib.optional enableShared [ "--enable-shared" ]
|
||||||
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
++ lib.optional (!stdenv.isi686) "--enable-pic"
|
||||||
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
++ lib.optional (stdenv.buildPlatform != stdenv.hostPlatform) "--cross-prefix=${stdenv.cc.targetPrefix}";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue