3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/bear/default.nix

67 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, grpc
, protobuf
, openssl
, nlohmann_json
, gtest
, fmt
, spdlog
, c-ares
, abseil-cpp
, zlib
2021-03-09 11:02:53 +00:00
, sqlite
, re2
}:
2016-08-29 13:05:12 +01:00
stdenv.mkDerivation rec {
pname = "bear";
2021-03-09 11:02:53 +00:00
version = "3.0.9";
2016-08-29 13:05:12 +01:00
src = fetchFromGitHub {
owner = "rizsotto";
2019-08-30 04:31:54 +01:00
repo = pname;
2016-08-29 13:05:12 +01:00
rev = version;
2021-03-09 11:02:53 +00:00
sha256 = "xac8PYo3qYjtQbDy8piOz5BQQpcVlAvMCv1qHrVZmPQ=";
2016-08-29 13:05:12 +01:00
};
nativeBuildInputs = [ cmake pkg-config ];
2016-08-29 13:05:12 +01:00
buildInputs = [
grpc
protobuf
openssl
nlohmann_json
gtest
fmt
spdlog
c-ares
abseil-cpp
zlib
2021-03-09 11:02:53 +00:00
sqlite
re2
];
2016-08-29 13:05:12 +01:00
patches = [
# Default libexec would be set to /nix/store/*-bear//nix/store/*-bear/libexec/...
./no-double-relative.patch
];
meta = with lib; {
2016-08-29 13:05:12 +01:00
description = "Tool that generates a compilation database for clang tooling";
longDescription = ''
Note: the bear command is very useful to generate compilation commands
e.g. for YouCompleteMe. You just enter your development nix-shell
and run `bear make`. It's not perfect, but it gets a long way.
'';
homepage = "https://github.com/rizsotto/Bear";
2016-08-29 13:05:12 +01:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = [ maintainers.babariviere ];
2021-03-09 16:18:37 +00:00
# ld: symbol(s) not found for architecture x86_64
broken = stdenv.isDarwin;
2016-08-29 13:05:12 +01:00
};
}