xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / os-specific / windows / npiperelay / default.nix
bloba0c22a8552c59f9f24042c1aedc7635dd9e49702
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "npiperelay";
9   version = "0.1.0";
11   src = fetchFromGitHub {
12     owner = "jstarks";
13     repo = "npiperelay";
14     rev = "v${version}";
15     sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o=";
16   };
18   vendorHash = null;
20   meta = {
21     description = "Access Windows named pipes from WSL";
22     homepage = "https://github.com/jstarks/npiperelay";
23     license = lib.licenses.mit;
24     maintainers = [ lib.maintainers.shlevy ];
25     platforms = lib.platforms.windows;
26   };