mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
csvdiff: Init at 1.4.0
This commit is contained in:
parent
58371472fe
commit
28731a2d43
25
pkgs/tools/text/csvdiff/default.nix
Normal file
25
pkgs/tools/text/csvdiff/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "csvdiff";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "aswinkarthik";
|
||||
repo = "csvdiff";
|
||||
rev = "v${version}";
|
||||
sha256 = "0cd1ikxsypjqisfnmr7zix3g7x8p892w77086465chyd39gpk97b";
|
||||
};
|
||||
|
||||
vendorSha256 = "1612s4kc0r8zw5y2n6agwdx9kwhxkdrjzagn4g22lzmjq02a64xf";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -2632,6 +2632,8 @@ with pkgs;
|
||||
|
||||
csv2odf = callPackage ../applications/office/csv2odf { };
|
||||
|
||||
csvdiff = callPackage ../tools/text/csvdiff { };
|
||||
|
||||
csview = callPackage ../tools/text/csview { };
|
||||
|
||||
csvkit = callPackage ../tools/text/csvkit { };
|
||||
|
Loading…
Reference in New Issue
Block a user