16 lines
375 B
Nix
16 lines
375 B
Nix
|
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ depot, ... }:
|
||
|
|
||
|
depot.third_party.buildGo.program {
|
||
|
name = "db2fcm";
|
||
|
srcs = [ ./db2fcm.go ];
|
||
|
deps = with depot.third_party; [
|
||
|
gopkgs."github.com".jackc.pgx.v4
|
||
|
gopkgs."firebase.google.com".go.v4
|
||
|
gopkgs."firebase.google.com".go.v4.messaging
|
||
|
];
|
||
|
}
|