biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / bacon / default.nix
blob8e4816a859a39d7bb25e58048e5c2ecae2e358fa
1 { lib
2 , stdenv
3 , rustPlatform
4 , fetchFromGitHub
5 , CoreServices
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "bacon";
10   version = "2.16.0";
12   src = fetchFromGitHub {
13     owner = "Canop";
14     repo = pname;
15     rev = "refs/tags/v${version}";
16     hash = "sha256-lYj6WIb8HvOO/RlxeTzD3r7Jjfx4mDqZ9VKo0chvooU=";
17   };
19   cargoHash = "sha256-G3IfxIhQ1t47ZhndTBmcUZNXHYehaaMVgIjBuD71zHE=";
21   buildInputs = lib.optionals stdenv.isDarwin [
22     CoreServices
23   ];
25   meta = with lib; {
26     description = "Background rust code checker";
27     mainProgram = "bacon";
28     homepage = "https://github.com/Canop/bacon";
29     changelog = "https://github.com/Canop/bacon/blob/v${version}/CHANGELOG.md";
30     license = licenses.agpl3Only;
31     maintainers = with maintainers; [ FlorianFranzen ];
32   };