2016-08-29 13:05:12 +01:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, python }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "bear-${version}";
|
2019-08-03 23:53:50 +01:00
|
|
|
version = "2.4.1";
|
2016-08-29 13:05:12 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rizsotto";
|
|
|
|
repo = "Bear";
|
|
|
|
rev = version;
|
2019-08-03 23:53:50 +01:00
|
|
|
sha256 = "0fqhhavyz9ddjc3wgb2ng47bfgk1q4w5bwah74nsa02k8r22pbch";
|
2016-08-29 13:05:12 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ python ]; # just for shebang of bin/bear
|
|
|
|
|
|
|
|
doCheck = false; # all fail
|
|
|
|
|
2018-03-01 17:03:42 +00:00
|
|
|
patches = [ ./ignore_wrapper.patch ./cmakepaths.patch ];
|
2016-11-03 14:27:03 +00:00
|
|
|
|
2016-08-29 13:05:12 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.unix;
|
2019-05-21 11:48:42 +01:00
|
|
|
maintainers = [ maintainers.babariviere ];
|
2016-08-29 13:05:12 +01:00
|
|
|
};
|
|
|
|
}
|