summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text
diff options
context:
space:
mode:
authorBruno Bigras <bigras.bruno@gmail.com>2020-10-23 18:01:06 -0400
committerBruno Bigras <bigras.bruno@gmail.com>2020-10-23 18:03:40 -0400
commitb622f7fe80f8f0b7799e821abc345df1403a99e3 (patch)
tree5e98171c833bb77c77b5db9b05c83d4f12e5156b /pkgs/tools/text
parentb0f9c2b4e18d25ce1ff7ac944888aedb9c9bc62a (diff)
angle-grinder: init at 0.15.0
Diffstat (limited to 'pkgs/tools/text')
-rw-r--r--pkgs/tools/text/angle-grinder/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/text/angle-grinder/default.nix b/pkgs/tools/text/angle-grinder/default.nix
new file mode 100644
index 000000000000..a8702553c4b3
--- /dev/null
+++ b/pkgs/tools/text/angle-grinder/default.nix
@@ -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 ];
+ };
+}