about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/csvdiff/default.nix
blob: f85d725d6ca442ba3bb4bff0cf5755d5d8fe5a13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "csvdiff";
  version = "1.4.0";

  src = fetchFromGitHub {
    owner = "aswinkarthik";
    repo = "csvdiff";
    rev = "v${version}";
    sha256 = "0cd1ikxsypjqisfnmr7zix3g7x8p892w77086465chyd39gpk97b";
  };

  vendorSha256 = "1612s4kc0r8zw5y2n6agwdx9kwhxkdrjzagn4g22lzmjq02a64xf";

  meta = with lib; {
    homepage = "https://aswinkarthik.github.io/csvdiff/";
    description = "A fast diff tool for comparing csv files";
    license = licenses.mit;
    maintainers = with maintainers; [ turion ];
  };
}