25 lines
909 B
Nix
25 lines
909 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
depot.third_party.buildGo.external {
|
||
|
path = "github.com/jackc/pgconn";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "jackc";
|
||
|
repo = "pgconn";
|
||
|
rev = "035868ca0c24b120f199e4bef6ac29a333e76baa";
|
||
|
sha256 = "030h8c2jjdh03fgff9zg842d0vmncfn1rv3g8drp73fmw0l3yp66";
|
||
|
};
|
||
|
deps = [
|
||
|
depot.third_party.gopkgs."github.com".jackc.chunkreader.v2
|
||
|
depot.third_party.gopkgs."github.com".jackc.pgio
|
||
|
depot.third_party.gopkgs."github.com".jackc.pgpassfile
|
||
|
depot.third_party.gopkgs."github.com".jackc.pgproto3.v2
|
||
|
depot.third_party.gopkgs."github.com".jackc.pgservicefile
|
||
|
depot.third_party.gopkgs."golang.org".x.crypto.pbkdf2
|
||
|
depot.third_party.gopkgs."golang.org".x.text.secure.precis
|
||
|
depot.third_party.gopkgs."golang.org".x.xerrors
|
||
|
];
|
||
|
}
|