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

{ depot, ... }:
depot.third_party.buildGo.package {
  name = "nixpool";
  path = "hg.lukegb.com/lukegb/depot/go/nix/nixpool";
  srcs = [
    ./dialer.go
    ./nixpool.go
  ];
  deps = with depot; [
    go.nix.nixdrv
    go.nix.nixstore
    
    third_party.gopkgs."golang.org".x.crypto.ssh
  ];
}