bear 3.1.0 -> 3.1.1 https://repology.org/metapackage/bear/versions attrpath: bear Checking auto update branch... No auto update branch exists Old version 3.1.0" not present in master derivation file with contents: { lib, stdenv , fetchFromGitHub , cmake , pkg-config , grpc , protobuf , openssl , nlohmann_json , gtest , spdlog , c-ares , zlib , sqlite , re2 }: stdenv.mkDerivation rec { pname = "bear"; version = "3.1.1"; src = fetchFromGitHub { owner = "rizsotto"; repo = pname; rev = version; sha256 = "sha256-EiAGM2tfzHp2rTAsf+mrfQ7VfX0NTFakcLVpT/plqh8="; }; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ grpc protobuf openssl nlohmann_json gtest spdlog c-ares zlib sqlite re2 ]; patches = [ # Default libexec would be set to /nix/store/*-bear//nix/store/*-bear/libexec/... ./no-double-relative.patch ]; meta = with 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; maintainers = with maintainers; [ babariviere qyliss ]; }; }