biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / csvdiff / default.nix
blob90faa060bed09e73eeec26da2cc25c985508eb9d
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "csvdiff";
8   version = "1.4.0";
10   src = fetchFromGitHub {
11     owner = "aswinkarthik";
12     repo = "csvdiff";
13     rev = "v${version}";
14     hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
15   };
17   vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";
19   meta = with lib; {
20     homepage = "https://aswinkarthik.github.io/csvdiff/";
21     description = "Fast diff tool for comparing csv files";
22     mainProgram = "csvdiff";
23     license = licenses.mit;
24     maintainers = with maintainers; [ turion ];
25   };