depot/go/nix/bnix/default.nix

18 lines
319 B
Nix
Raw Normal View History

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