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