blob: ab9fc7bdf51c6293882f8712d050e2f6053742dd (
plain)
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
26
27
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule (finalAttrs: {
pname = "csvdiff";
version = "1.4.0";
src = fetchFromGitHub {
owner = "aswinkarthik";
repo = "csvdiff";
rev = "v${finalAttrs.version}";
hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
};
vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";
meta = {
homepage = "https://aswinkarthik.github.io/csvdiff/";
description = "Fast diff tool for comparing csv files";
mainProgram = "csvdiff";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ turion ];
};
})
|