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-07-27 09:17:10 +02:00
|
|
|
version = "0.17.0";
|
2020-10-24 00:01:06 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rcoh";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-07-27 09:17:10 +02:00
|
|
|
sha256 = "sha256-jG3jHFqFOrIT/e5oyLOEckw5C3LIs7amFAa4QDEI/EY=";
|
2020-10-24 00:01:06 +02:00
|
|
|
};
|
|
|
|
|
2021-07-27 09:17:10 +02:00
|
|
|
cargoSha256 = "sha256-Rkex+fnnacV+DCRpX3Zh9J3vGuG4QfFhFezHTs33peY=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|