2021-11-22 13:56:55 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "csvdiff";
|
|
|
|
version = "1.4.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "aswinkarthik";
|
|
|
|
repo = "csvdiff";
|
|
|
|
rev = "v${version}";
|
2023-08-11 02:40:21 +00:00
|
|
|
hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
|
2021-11-22 13:56:55 +00:00
|
|
|
};
|
|
|
|
|
2023-08-11 02:40:21 +00:00
|
|
|
vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";
|
2021-11-22 13:56:55 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|