Merge pull request #95851 from marsam/update-timescaledb-parallel-copy
timescaledb-parallel-copy: 0.2.0 -> 0.3.0
This commit is contained in:
commit
22dcc4e08a
@ -1,26 +1,22 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
name = "timescaledb-parallel-copy";
|
pname = "timescaledb-parallel-copy";
|
||||||
version = "0.2.0";
|
version = "0.3.0";
|
||||||
|
|
||||||
owner = "timescale";
|
|
||||||
repo = "timescaledb-parallel-copy";
|
|
||||||
|
|
||||||
goPackagePath = with src; "github.com/${owner}/${repo}";
|
|
||||||
goDeps = ./deps.nix;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
inherit owner repo;
|
owner = "timescale";
|
||||||
rev = version;
|
repo = pname;
|
||||||
sha256 = "1z9vf29vrxqs8imbisv681d02p4cfk3hlsrin6hhibxf1h0br9gd";
|
rev = "v${version}";
|
||||||
|
sha256 = "0r8c78l8vg7l24c3vzs2qr2prfjpagvdkp95fh9gyz76nvik29ba";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "03siay3hv1sgmmp7w4f9b0xb8c6bnbx0v4wy5grjl5k04zhnj76b";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Bulk, parallel insert of CSV records into PostgreSQL";
|
description = "Bulk, parallel insert of CSV records into PostgreSQL";
|
||||||
homepage = "https://github.com/timescale/timescaledb-parallel-copy";
|
homepage = "https://github.com/timescale/timescaledb-parallel-copy";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
platforms = platforms.unix;
|
|
||||||
maintainers = with maintainers; [ thoughtpolice ];
|
maintainers = with maintainers; [ thoughtpolice ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
# This file was generated by https://github.com/kamilchm/go2nix v1.3.0
|
|
||||||
[
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/jmoiron/sqlx";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/jmoiron/sqlx";
|
|
||||||
rev = "82935fac6c1a317907c8f43ed3f7f85ea844a78b";
|
|
||||||
sha256 = "0cbscnss2ifc3qgmy97i0zbirrp4hix4jlcz853f4bg5n2zzgwh2";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/lib/pq";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/lib/pq";
|
|
||||||
rev = "7aad666537ab32b76f0966145530335f1fed51fd";
|
|
||||||
sha256 = "12qczn5afbf6203wnbpay1kazzh20jg5qyakrph3j1r13n91nc1r";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
]
|
|
Loading…
x
Reference in New Issue
Block a user