18 lines
431 B
Nix
18 lines
431 B
Nix
|
# 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
|
||
|
];
|
||
|
path = "hg.lukegb.com/lukegb/depot/go/trains/darwin/darwingest/darwingeststomp";
|
||
|
deps = with depot.third_party; [
|
||
|
gopkgs."github.com".go-stomp.stomp.v3
|
||
|
|
||
|
depot.go.trains.darwin
|
||
|
];
|
||
|
}
|