mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
Merge pull request #121268 from FlorianFranzen/bacon
bacon: init at 1.1.5
This commit is contained in:
commit
c6dde9d0a1
22
pkgs/development/tools/bacon/default.nix
Normal file
22
pkgs/development/tools/bacon/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, rustPlatform, fetchFromGitHub }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "bacon";
|
||||
version = "1.1.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Canop";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0wyx216q9q7y60bnnw4cbpv9zlbnjm2hwq0llkjw60fp3qalj9am";
|
||||
};
|
||||
|
||||
cargoSha256 = "1pii5ajl3xgylrm20pkwbd1lk7gv0pshl1cxjfna0l63q56v7f21";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Background rust code checker";
|
||||
homepage = "https://github.com/Canop/bacon";
|
||||
license = licenses.agpl3Only;
|
||||
maintainers = [ maintainers.FlorianFranzen ];
|
||||
};
|
||||
}
|
@ -3236,6 +3236,8 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation IOKit;
|
||||
};
|
||||
|
||||
bacon = callPackage ../development/tools/bacon { };
|
||||
|
||||
bareos = callPackage ../tools/backup/bareos { };
|
||||
|
||||
bats = callPackage ../development/interpreters/bats { };
|
||||
|
Loading…
Reference in New Issue
Block a user