mangayomi: useFetchCargoVendor (#376506)
[NixPkgs.git] / pkgs / by-name / ti / timescaledb-parallel-copy / package.nix
blob9d855cbff76eae094e8bda632cd2d3a464d71606
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "timescaledb-parallel-copy";
9   version = "0.4.0";
11   src = fetchFromGitHub {
12     owner = "timescale";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-HxaGKJnLZjPPJXoccAx0XUsCrZiG09c40zeSbHYXm04=";
16   };
18   vendorHash = "sha256-muxtr80EjnRoHG/TCEQwrBwlnARsfqWoYlR0HavMe6U=";
20   meta = with lib; {
21     description = "Bulk, parallel insert of CSV records into PostgreSQL";
22     mainProgram = "timescaledb-parallel-copy";
23     homepage = "https://github.com/timescale/timescaledb-parallel-copy";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ thoughtpolice ];
26   };