16 lines
308 B
Nix
16 lines
308 B
Nix
# 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
|
|
];
|
|
}
|