summary refs log tree commit diff
path: root/pkgs/development/libraries/libbacktrace/default.nix
blob: ea7f4eb9fa8a8f2c2b7d3ca578842127083afe4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, callPackage, fetchFromGitHub
, enableStatic ? stdenv.hostPlatform.isStatic
, enableShared ? !stdenv.hostPlatform.isStatic
}:
let
  yesno = b: if b then "yes" else "no";
in stdenv.mkDerivation rec {
  pname = "libbacktrace";
  version = "2020-05-13";
  src = fetchFromGitHub {
    owner = "ianlancetaylor";
    repo = pname;
    rev = "9b7f216e867916594d81e8b6118f092ac3fcf704";
    sha256 = "0qr624v954gnfkmpdlfk66sxz3acyfmv805rybsaggw5gz5sd1nh";
  };
  configureFlags = [
    "--enable-static=${yesno enableStatic}"
    "--enable-shared=${yesno enableShared}"
  ];
  meta = with stdenv.lib; {
    description = "A C library that may be linked into a C/C++ program to produce symbolic backtraces";
    homepage = https://github.com/ianlancetaylor/libbacktrace;
    maintainers = with maintainers; [ twey ];
    license = with licenses; [ bsd3 ];
  };
}