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

26 lines
592 B
Nix
Raw Normal View History

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