nixpkgs/pkgs/development/tools/bacon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
647 B
Nix
Raw Normal View History

2021-05-19 20:13:44 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, CoreServices }:
2021-04-30 14:16:12 +01:00
rustPlatform.buildRustPackage rec {
pname = "bacon";
2022-05-27 03:53:22 +01:00
version = "2.2.0";
2021-04-30 14:16:12 +01:00
src = fetchFromGitHub {
owner = "Canop";
repo = pname;
rev = "v${version}";
2022-05-27 03:53:22 +01:00
sha256 = "sha256-GoaWlnlE/UfLX3HjbQXPMBOdlplParq7HHAfCUcdGLc=";
2021-04-30 14:16:12 +01:00
};
2022-05-27 03:53:22 +01:00
cargoSha256 = "sha256-3heAu8n1Dm7ewYTSCwxtgpF2vn/D5B52BuM9qz0X7Yc=";
2021-04-30 14:16:12 +01:00
2021-05-19 20:13:44 +01:00
buildInputs = lib.optional stdenv.isDarwin CoreServices;
2021-04-30 14:16:12 +01:00
meta = with lib; {
description = "Background rust code checker";
homepage = "https://github.com/Canop/bacon";
license = licenses.agpl3Only;
maintainers = [ maintainers.FlorianFranzen ];
};
}