main
 1{ pkgs }:
 2
 3pkgs.buildGoModule {
 4  pname = "shpool-remote";
 5  version = "0.1.0";
 6
 7  src = ./.;
 8
 9  vendorHash = null;
10
11  meta = with pkgs.lib; {
12    description = "Manage shpool sessions on remote hosts";
13    license = licenses.asl20;
14    maintainers = [ ];
15  };
16}