mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Merge pull request #101503 from bbigras/angle-grinder
angle-grinder: init at 0.15.0
This commit is contained in:
commit
ba84f8b1ba
25
pkgs/tools/text/angle-grinder/default.nix
Normal file
25
pkgs/tools/text/angle-grinder/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "angle-grinder";
|
||||||
|
version = "0.15.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "rcoh";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1m5yj9412kjlnqi1nwh44i627ip0kqcbhvwgh87gl5vgd2a0m091";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0y4c1gja0i3h2whjpm74yf3z1y85pkwmpmrl2fjsyy0mn493hzv8";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Slice and dice logs on the command line";
|
||||||
|
homepage = "https://github.com/rcoh/angle-grinder";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ bbigras ];
|
||||||
|
};
|
||||||
|
}
|
@ -805,6 +805,8 @@ in
|
|||||||
|
|
||||||
analog = callPackage ../tools/admin/analog {};
|
analog = callPackage ../tools/admin/analog {};
|
||||||
|
|
||||||
|
angle-grinder = callPackage ../tools/text/angle-grinder {};
|
||||||
|
|
||||||
ansifilter = callPackage ../tools/text/ansifilter {};
|
ansifilter = callPackage ../tools/text/ansifilter {};
|
||||||
|
|
||||||
antora = callPackage ../development/tools/documentation/antora {};
|
antora = callPackage ../development/tools/documentation/antora {};
|
||||||
|
Loading…
Reference in New Issue
Block a user