3
0
Fork 0
forked from mirrors/nixpkgs

backward: init at 1.3

A beautiful stack trace pretty printer for C++
This commit is contained in:
Charles Strahan 2017-07-24 20:02:16 -04:00
parent 958cdf37c1
commit f281cfe76d
No known key found for this signature in database
GPG key ID: BB47AB4B8489B5A5
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "backward-${version}";
version = "1.3";
src = fetchFromGitHub {
owner = "bombela";
repo = "backward-cpp";
rev = "v${version}";
sha256 = "1nx77qamal53rq8qxsjzax6ljawb345a1v3cqmfwa0hx26srxcln";
};
installPhase = ''
runHook preInstall
mkdir -p $out/include
cp backward.hpp $out/include
runHook postInstall
'';
meta = with lib; {
description = "Beautiful stack trace pretty printer for C++";
homepage = "https://github.com/bombela/backward-cpp";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ cstrahan ];
};
}

View file

@ -7469,6 +7469,8 @@ with pkgs;
babl = callPackage ../development/libraries/babl { };
backward-cpp = callPackage ../development/libraries/backward-cpp { };
bctoolbox = callPackage ../development/libraries/bctoolbox {
mbedtls = mbedtls_1_3;
};