14 lines
431 B
Nix
14 lines
431 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/pgpassfile";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "jackc";
|
|
repo = "pgpassfile";
|
|
rev = "99d8e8e28945ffceaf75b0299fcb2bb656b8a683";
|
|
sha256 = "1crw06lzksgimbmr1a3sr00azg2v7l4qkvjra1cpmzzq5mncaj8z";
|
|
};
|
|
}
|