mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-04 03:03:42 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
27 lines
604 B
Nix
27 lines
604 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "csvdiff";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aswinkarthik";
|
|
repo = "csvdiff";
|
|
rev = "v${version}";
|
|
hash = "sha256-66R5XxrNQ1YMMQicw0VCF/XzRo//5Gqdjlher/uMoTE=";
|
|
};
|
|
|
|
vendorHash = "sha256-rhOjBMCyfirEI/apL3ObHfKZeuNPGSt84R9lwCbRIpg=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://aswinkarthik.github.io/csvdiff/";
|
|
description = "A fast diff tool for comparing csv files";
|
|
mainProgram = "csvdiff";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ turion ];
|
|
};
|
|
}
|