# SPDX-FileCopyrightText: 2023 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0

{ depot, ... }:
depot.third_party.buildGo.package {
  name = "nixbuild";
  path = "hg.lukegb.com/lukegb/depot/go/nix/nixbuild";
  srcs = [
    ./config.go
    ./coordinator.go
    ./httpresolver.go
    ./nixbuild.go
    ./peerresolver.go
    ./state.go
    ./workitem.go
  ];
  deps = with depot; [
    go.nix.nixstore
    go.nix.nixpool
    go.nix.nar
  ];
}