mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 11:53:27 +00:00
bacon: init at 1.1.5
This commit is contained in:
parent
f4c4ddae04
commit
7e0c648377
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -3190,6 +3190,8 @@ in
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation IOKit;
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation IOKit;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bacon = callPackage ../development/tools/bacon { };
|
||||||
|
|
||||||
bareos = callPackage ../tools/backup/bareos { };
|
bareos = callPackage ../tools/backup/bareos { };
|
||||||
|
|
||||||
bats = callPackage ../development/interpreters/bats { };
|
bats = callPackage ../development/interpreters/bats { };
|
||||||
|
Loading…
Reference in New Issue
Block a user