depot/go/trains/darwin/darwingest/darwingeststomp/default.nix

18 lines
432 B
Nix
Raw Normal View History

2021-11-18 22:24:20 +00:00
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }@args:
depot.third_party.buildGo.package {
name = "darwingeststomp";
srcs = [
./darwingeststomp.go
];
2024-11-16 15:30:41 +00:00
path = "git.lukegb.com/lukegb/depot/go/trains/darwin/darwingest/darwingeststomp";
2021-11-18 22:24:20 +00:00
deps = with depot.third_party; [
gopkgs."github.com".go-stomp.stomp.v3
depot.go.trains.darwin
];
}