mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
bunyan-rs: init at 0.1.2
Update pkgs/development/tools/bunyan-rs/default.nix
This commit is contained in:
parent
e392df43c9
commit
119a3e6a35
25
pkgs/development/tools/bunyan-rs/default.nix
Normal file
25
pkgs/development/tools/bunyan-rs/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ rustPlatform
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "bunyan-rs";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LukeMathWalker";
|
||||
repo = "bunyan";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Rj0VoJMcl8UBuVNu88FwTNF1GBx8IEXxwLL8sGz9kVM=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-UZAiXLbRhr2J7QFf7x+JbEjc6p2AoVHYMgyARuwaB7E=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A CLI to pretty print logs in bunyan format (Rust port of the original JavaScript bunyan CLI)";
|
||||
homepage = "https://github.com/LukeMathWalker/bunyan";
|
||||
license = with licenses; [ asl20 mit ];
|
||||
maintainers = with maintainers; [ netcrns ];
|
||||
};
|
||||
}
|
@ -1261,6 +1261,8 @@ in
|
||||
|
||||
bunny = callPackage ../tools/package-management/bunny { };
|
||||
|
||||
bunyan-rs = callPackage ../development/tools/bunyan-rs { };
|
||||
|
||||
callaudiod = callPackage ../applications/audio/callaudiod { };
|
||||
|
||||
calls = callPackage ../applications/networking/calls { };
|
||||
|
Loading…
Reference in New Issue
Block a user