2023-01-07 22:05:46 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, rustPlatform
|
|
|
|
, fetchFromGitHub
|
|
|
|
, CoreServices
|
|
|
|
}:
|
2021-04-30 13:16:12 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "bacon";
|
2023-12-25 22:07:43 +00:00
|
|
|
version = "2.14.1";
|
2021-04-30 13:16:12 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Canop";
|
|
|
|
repo = pname;
|
2023-01-07 22:05:46 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2023-12-25 22:07:43 +00:00
|
|
|
hash = "sha256-fhAKTZk+51KYjEnVWNLwpUWx+Quj3tmvmIvULQTbGf8=";
|
2021-04-30 13:16:12 +00:00
|
|
|
};
|
|
|
|
|
2023-12-25 22:07:43 +00:00
|
|
|
cargoHash = "sha256-eBWmb6YaGZX31K3jKNKXgTGOOQm/WiSupckkpi49dWI=";
|
2021-04-30 13:16:12 +00:00
|
|
|
|
2023-03-10 22:55:17 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
2023-01-07 22:05:46 +00:00
|
|
|
CoreServices
|
|
|
|
];
|
2021-05-19 19:13:44 +00:00
|
|
|
|
2021-04-30 13:16:12 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Background rust code checker";
|
|
|
|
homepage = "https://github.com/Canop/bacon";
|
2023-01-07 22:05:46 +00:00
|
|
|
changelog = "https://github.com/Canop/bacon/blob/v${version}/CHANGELOG.md";
|
2021-04-30 13:16:12 +00:00
|
|
|
license = licenses.agpl3Only;
|
2023-01-07 22:05:46 +00:00
|
|
|
maintainers = with maintainers; [ FlorianFranzen ];
|
2021-04-30 13:16:12 +00:00
|
|
|
};
|
|
|
|
}
|