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

26 lines
586 B
Nix
Raw Normal View History

{ lib
2020-10-23 22:01:06 +00:00
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "angle-grinder";
2021-07-27 07:17:10 +00:00
version = "0.17.0";
2020-10-23 22:01:06 +00:00
src = fetchFromGitHub {
owner = "rcoh";
repo = pname;
rev = "v${version}";
2021-07-27 07:17:10 +00:00
sha256 = "sha256-jG3jHFqFOrIT/e5oyLOEckw5C3LIs7amFAa4QDEI/EY=";
2020-10-23 22:01:06 +00:00
};
2021-07-27 07:17:10 +00:00
cargoSha256 = "sha256-Rkex+fnnacV+DCRpX3Zh9J3vGuG4QfFhFezHTs33peY=";
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 ];
};
}