lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

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