nixpkgs/pkgs/development/tools/bunyan-rs/default.nix

27 lines
695 B
Nix
Raw Normal View History

{ rustPlatform
, fetchFromGitHub
, lib
}:
rustPlatform.buildRustPackage rec {
pname = "bunyan-rs";
2021-11-05 23:52:42 +01:00
version = "0.1.6";
src = fetchFromGitHub {
owner = "LukeMathWalker";
repo = "bunyan";
rev = "v${version}";
2021-11-05 23:52:42 +01:00
sha256 = "sha256-oMk17twYfN8BwSfdG59uPOUoHNh7WLUEgIDoWTG15Yw=";
};
2021-11-05 23:52:42 +01:00
cargoSha256 = "sha256-nzUFdpRdIVExV8OBdk/LEefj6O/L7yhj4eCpqU5WAJg=";
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 ];
2021-10-08 21:14:49 +02:00
mainProgram = "bunyan";
};
}