npiperelay: init at 0.1.0

+25
+2
pkgs/os-specific/windows/default.nix
··· 37 stdenv = crossThreadsStdenv; 38 }; 39 40 pthreads = callPackage ./pthread-w32 { }; 41 42 wxMSW = callPackage ./wxMSW-2.8 { };
··· 37 stdenv = crossThreadsStdenv; 38 }; 39 40 + npiperelay = callPackage ./npiperelay { }; 41 + 42 pthreads = callPackage ./pthread-w32 { }; 43 44 wxMSW = callPackage ./wxMSW-2.8 { };
+23
pkgs/os-specific/windows/npiperelay/default.nix
···
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "npiperelay"; 5 + version = "0.1.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jstarks"; 9 + repo = "npiperelay"; 10 + rev = "v${version}"; 11 + sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o="; 12 + }; 13 + 14 + vendorSha256 = null; 15 + 16 + meta = { 17 + description = "Access Windows named pipes from WSL"; 18 + homepage = "https://github.com/jstarks/npiperelay"; 19 + license = lib.licenses.mit; 20 + maintainers = [ lib.maintainers.shlevy ]; 21 + platforms = lib.platforms.windows; 22 + }; 23 + }