lol
at master 27 lines 558 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "npiperelay"; 9 version = "0.1.0"; 10 11 src = fetchFromGitHub { 12 owner = "jstarks"; 13 repo = "npiperelay"; 14 rev = "v${version}"; 15 sha256 = "sha256-cg4aZmpTysc8m1euxIO2XPv8OMnBk1DwhFcuIFHF/1o="; 16 }; 17 18 vendorHash = null; 19 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 }; 27}