ateam 1.0.10

The tool that helps optimize the code review process.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, rustPlatform, pkg-config, darwin }:

rustPlatform.buildRustPackage rec {
  pname = "ateam";
  version = "1.0.10";

  src = ./.;

  cargoLock = { lockFile = ./Cargo.lock; };

  nativeBuildInputs = [ pkg-config ];

  meta = with lib; {
    description = "ateam: The tool that helps optimize the code review process";
    license = licenses.mit;
    maintainers = with maintainers; [ "frisoft" ];
  };
}