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