summary refs log tree commit diff
path: root/pkgs/os-specific/windows/npiperelay/default.nix
blob: d2347edcbaff6deef64a7fb1f8d9db57fa794d0e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "npiperelay";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "jstarks";
    repo = "npiperelay";
    rev = "v${version}";
    sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o=";
  };

  vendorHash = null;

  meta = {
    description = "Access Windows named pipes from WSL";
    homepage = "https://github.com/jstarks/npiperelay";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.shlevy ];
    platforms = lib.platforms.windows;
  };
}