
Diff: https://github.com/Canop/bacon/compare/refs/tags/v3.15.0...refs/tags/v3.16.0 Changelog: https://github.com/Canop/bacon/blob/v3.16.0/CHANGELOG.md
90 lines
2.0 KiB
Nix
90 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
pkg-config,
|
|
alsa-lib,
|
|
versionCheckHook,
|
|
bacon,
|
|
buildPackages,
|
|
nix-update-script,
|
|
|
|
withSound ? false,
|
|
}:
|
|
|
|
let
|
|
soundDependencies =
|
|
lib.optionals stdenv.hostPlatform.isLinux [
|
|
alsa-lib
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# bindgenHook is only included on darwin as it is needed to build `coreaudio-sys`, a darwin-specific crate
|
|
rustPlatform.bindgenHook
|
|
];
|
|
in
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "bacon";
|
|
version = "3.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Canop";
|
|
repo = "bacon";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-+gcH527HaYQsyCqULWhEgz8DNwK8vIWJjVSZhcGme74=";
|
|
};
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-kr6c5n9A6Cjv3CPdIS9XkelauK/uBsTDt5iowWmAZn4=";
|
|
|
|
buildFeatures = lib.optionals withSound [
|
|
"sound"
|
|
];
|
|
|
|
nativeBuildInputs =
|
|
[
|
|
installShellFiles
|
|
]
|
|
++ lib.optionals withSound [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals withSound soundDependencies;
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
versionCheckProgramArg = "--version";
|
|
doInstallCheck = true;
|
|
|
|
postInstall =
|
|
let
|
|
bacon = "${stdenv.hostPlatform.emulator buildPackages} $out/bin/bacon";
|
|
in
|
|
lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ''
|
|
installShellCompletion --cmd bacon \
|
|
--bash <(COMPLETE=bash ${bacon}) \
|
|
--fish <(COMPLETE=fish ${bacon}) \
|
|
--zsh <(COMPLETE=zsh ${bacon})
|
|
'';
|
|
|
|
passthru = {
|
|
tests = {
|
|
withSound = bacon.override { withSound = true; };
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Background rust code checker";
|
|
mainProgram = "bacon";
|
|
homepage = "https://github.com/Canop/bacon";
|
|
changelog = "https://github.com/Canop/bacon/blob/v${finalAttrs.version}/CHANGELOG.md";
|
|
license = lib.licenses.agpl3Only;
|
|
maintainers = with lib.maintainers; [
|
|
FlorianFranzen
|
|
matthiasbeyer
|
|
];
|
|
};
|
|
})
|