depot/go/nix/bnixbuild/default.nix

17 lines
308 B
Nix
Raw Normal View History

2023-08-23 23:00:44 +00:00
# SPDX-FileCopyrightText: 2023 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ depot, ... }:
depot.third_party.buildGo.program {
name = "bnixbuild";
srcs = [
./bnixbuild.go
];
deps = with depot; [
go.nix.nixbuild
go.nix.nixpool
go.nix.nixstore
];
}