npiperelay: init at 0.1.0
This commit is contained in:
parent
5726b8faec
commit
121a26897f
@ -37,6 +37,8 @@ lib.makeScope newScope (self: with self; {
|
||||
stdenv = crossThreadsStdenv;
|
||||
};
|
||||
|
||||
npiperelay = callPackage ./npiperelay { };
|
||||
|
||||
pthreads = callPackage ./pthread-w32 { };
|
||||
|
||||
wxMSW = callPackage ./wxMSW-2.8 { };
|
||||
|
23
pkgs/os-specific/windows/npiperelay/default.nix
Normal file
23
pkgs/os-specific/windows/npiperelay/default.nix
Normal file
@ -0,0 +1,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=";
|
||||
};
|
||||
|
||||
vendorSha256 = 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user