nixpkgs/pkgs/development/libraries/backward-cpp/default.nix
Charles Strahan f281cfe76d
backward: init at 1.3
A beautiful stack trace pretty printer for C++
2017-08-03 00:38:33 -04:00

31 lines
687 B
Nix

{ 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 ];
};
}