nixpkgs/pkgs/tools/text/angle-grinder/default.nix

26 lines
584 B
Nix
Raw Normal View History

{ lib
2020-10-23 22:01:06 +00:00
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "angle-grinder";
2021-01-19 06:35:38 +00:00
version = "0.16";
2020-10-23 22:01:06 +00:00
src = fetchFromGitHub {
owner = "rcoh";
repo = pname;
rev = "v${version}";
2021-01-19 06:35:38 +00:00
sha256 = "sha256-cGYhGcNalmc/Gr7mY1Fycs8cZYaIy622DFIL64LT+gE=";
2020-10-23 22:01:06 +00:00
};
cargoSha256 = "sha256-LJ7zudUeso28zJqLhqWGWqf+L4o75rJjtTx9BpWKRIE=";
2020-10-23 22:01:06 +00:00
meta = with lib; {
2020-10-23 22:01:06 +00:00
description = "Slice and dice logs on the command line";
homepage = "https://github.com/rcoh/angle-grinder";
license = licenses.mit;
maintainers = with maintainers; [ bbigras ];
};
}