Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 92781c27bd16
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ba84f8b1ba64
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Oct 23, 2020

  1. angle-grinder: init at 0.15.0

    bbigras committed Oct 23, 2020
    Copy the full SHA
    b622f7f View commit details

Commits on Nov 2, 2020

  1. Merge pull request #101503 from bbigras/angle-grinder

    angle-grinder: init at 0.15.0
    kevincox authored Nov 2, 2020
    Copy the full SHA
    ba84f8b View commit details
Showing with 27 additions and 0 deletions.
  1. +25 −0 pkgs/tools/text/angle-grinder/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
25 changes: 25 additions & 0 deletions pkgs/tools/text/angle-grinder/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -805,6 +805,8 @@ in

analog = callPackage ../tools/admin/analog {};

angle-grinder = callPackage ../tools/text/angle-grinder {};

ansifilter = callPackage ../tools/text/ansifilter {};

antora = callPackage ../development/tools/documentation/antora {};