lol
1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "csvdiff";
8 version = "1.4.0";
9
10 src = fetchFromGitHub {
11 owner = "aswinkarthik";
12 repo = "csvdiff";
13 rev = "v${version}";
14 hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
15 };
16
17 vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";
18
19 meta = with lib; {
20 homepage = "https://aswinkarthik.github.io/csvdiff/";
21 description = "A fast diff tool for comparing csv files";
22 license = licenses.mit;
23 maintainers = with maintainers; [ turion ];
24 };
25}