tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
npiperelay: init at 0.1.0
Shea Levy
3 years ago
121a2689
5726b8fa
+25
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
windows
default.nix
npiperelay
default.nix
+2
pkgs/os-specific/windows/default.nix
···
37
37
stdenv = crossThreadsStdenv;
38
38
};
39
39
40
40
+
npiperelay = callPackage ./npiperelay { };
41
41
+
40
42
pthreads = callPackage ./pthread-w32 { };
41
43
42
44
wxMSW = callPackage ./wxMSW-2.8 { };
+23
pkgs/os-specific/windows/npiperelay/default.nix
···
1
1
+
{ lib, buildGoModule, fetchFromGitHub }:
2
2
+
3
3
+
buildGoModule rec {
4
4
+
pname = "npiperelay";
5
5
+
version = "0.1.0";
6
6
+
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "jstarks";
9
9
+
repo = "npiperelay";
10
10
+
rev = "v${version}";
11
11
+
sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o=";
12
12
+
};
13
13
+
14
14
+
vendorSha256 = null;
15
15
+
16
16
+
meta = {
17
17
+
description = "Access Windows named pipes from WSL";
18
18
+
homepage = "https://github.com/jstarks/npiperelay";
19
19
+
license = lib.licenses.mit;
20
20
+
maintainers = [ lib.maintainers.shlevy ];
21
21
+
platforms = lib.platforms.windows;
22
22
+
};
23
23
+
}