about summary refs log tree commit diff
path: root/pkgs/development/compilers/llvm/10/libunwind.nix
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2020-01-25 00:17:00 +0100
committerGabor Greif <ggreif@gmail.com>2020-02-25 13:24:27 +0100
commitf111c6f9cebacc0201f59c25d6be0683014a3935 (patch)
tree4e75bed915f9b292898e97f022a5e4687a4ae723 /pkgs/development/compilers/llvm/10/libunwind.nix
parent82cbc6af3cbb77a07e1725554119e0fb032d7cf6 (diff)
downloadnixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.gz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.bz2
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.lz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.xz
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.tar.zst
nixlib-f111c6f9cebacc0201f59c25d6be0683014a3935.zip
llvmPackages_10: copy llvmPackages_9
* starting with rc2
* make `lldb` compilable again on Darwin
* separate out manpage creation for `lldb` into a new derivation
* minor tweaks to the patching of sources,
  some of which are backportable to earlier versions
Diffstat (limited to 'pkgs/development/compilers/llvm/10/libunwind.nix')
-rw-r--r--pkgs/development/compilers/llvm/10/libunwind.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/development/compilers/llvm/10/libunwind.nix b/pkgs/development/compilers/llvm/10/libunwind.nix
new file mode 100644
index 000000000000..7a8fb13dad27
--- /dev/null
+++ b/pkgs/development/compilers/llvm/10/libunwind.nix
@@ -0,0 +1,14 @@
+{ stdenv, version, fetch, cmake, fetchpatch, enableShared ? true }:
+
+stdenv.mkDerivation rec {
+  pname = "libunwind";
+  inherit version;
+
+  src = fetch pname "0194s3qqqz4qcrzdfy7c931sm3d9hnjk624gldja85mwz1v1x9a8";
+
+  nativeBuildInputs = [ cmake ];
+
+  enableParallelBuilding = true;
+
+  cmakeFlags = stdenv.lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF";
+}