evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / an / angle-grinder / package.nix
blob322cd12463c85faec6f77e5f190dc1132f61ff71
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "angle-grinder";
8   version = "0.19.4";
10   src = fetchFromGitHub {
11     owner = "rcoh";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-1SZho04qJcNi84ZkDmxoVkLx9VJX04QINZQ6ZEoCq+c=";
15   };
17   cargoHash = "sha256-+l0+zaZSPOk4gJLHZ9LFFbYlZ5vkS68Jg2dWPHSkzKw=";
19   meta = with lib; {
20     description = "Slice and dice logs on the command line";
21     homepage = "https://github.com/rcoh/angle-grinder";
22     license = licenses.mit;
23     maintainers = with maintainers; [ bbigras ];
24     mainProgram = "agrind";
25   };