about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/csvdiff/default.nix
blob: 236993b2dd2572c9a548c4ea392bf69dcbaa23a5 (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}";
    hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
  };

  vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";

  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 ];
  };
}