acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / bu / bunyan-rs / package.nix
blob35fc322b05679cb84dc7154398875cf29d432189
1 { rustPlatform
2 , fetchFromGitHub
3 , lib
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "bunyan-rs";
8   version = "0.1.9";
10   src = fetchFromGitHub {
11     owner = "LukeMathWalker";
12     repo = "bunyan";
13     rev = "v${version}";
14     sha256 = "sha256-dqhZIwxWBMXS2RgE8YynYrESVyAOIJ9ujAKcp2tDhvA=";
15   };
17   cargoHash = "sha256-sQ6f8BHGsPFPchFDjNlZimnu9i99SGYf5bYfM1/2Gac=";
19   meta = with lib; {
20     description = "CLI to pretty print logs in bunyan format (Rust port of the original JavaScript bunyan CLI)";
21     homepage = "https://github.com/LukeMathWalker/bunyan";
22     license = with licenses; [ asl20 mit ];
23     maintainers = with maintainers; [ netcrns ];
24     mainProgram = "bunyan";
25   };