nixpkgs/pkgs/os-specific/windows/npiperelay/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
558 B
Nix
Raw Normal View History

2024-08-16 09:35:01 +01:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
2022-05-18 13:15:04 +01:00
buildGoModule rec {
pname = "npiperelay";
version = "0.1.0";
src = fetchFromGitHub {
owner = "jstarks";
repo = "npiperelay";
rev = "v${version}";
sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o=";
};
vendorHash = null;
2022-05-18 13:15:04 +01:00
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;
};
}