package.nix (684B)
1 { 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5 }: 6 7 buildGoModule (finalAttrs: { 8 pname = "mystique"; 9 version = "0-unstable-2022-11-25"; 10 11 __structuredAttrs = true; 12 13 src = fetchFromGitHub { 14 owner = "TheThingsIndustries"; 15 repo = "mystique"; 16 rev = "80ab21781b6d29cee3f05905cb2842e4bef3834e"; 17 hash = "sha256-8qcjXvCBHlv0lM5tNjbMv/HLAHyF0gFBFrNo5g6p7h8="; 18 }; 19 20 vendorHash = "sha256-Pf/FwpDMmeAKnNybj/tHlbbfhNKT2UPTVTodhoulNY8="; 21 22 __darwinAllowLocalNetworking = true; 23 24 meta = { 25 description = "MQTT Server"; 26 homepage = "https://github.com/TheThingsIndustries/mystique"; 27 license = lib.licenses.mit; 28 maintainers = [ lib.maintainers.sikmir ]; 29 }; 30 })
