llvmPackages_8.libraries.libunwind: add enableShared option

This commit is contained in:
Yegor Timoshenko 2019-07-29 03:04:05 +03:00
parent 239fffc90d
commit cdee3b7966
No known key found for this signature in database
GPG key ID: B0B0D739BB47A03A
2 changed files with 6 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{ stdenv, version, fetch, cmake, fetchpatch }: { stdenv, version, fetch, cmake, fetchpatch, enableShared ? true }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "libunwind-${version}"; name = "libunwind-${version}";
@ -19,4 +19,6 @@ stdenv.mkDerivation {
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;
cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF";
} }

View file

@ -154,9 +154,11 @@ in {
enableShared = false; enableShared = false;
inherit libcxxabi; inherit libcxxabi;
}; };
libunwind = super.llvmPackages_8.libraries.libunwind.override {
enableShared = false;
};
}; };
}; };
python27 = super.python27.override { static = true; }; python27 = super.python27.override { static = true; };
} }