From 528e89cdcb8b92d80c70697fd8d92078429fa2dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 17 Sep 2023 19:38:34 +0200 Subject: [PATCH] deconz: update meta * Set meta.mainProgram to silence lib.getExe warning. * Fix meta.platforms - the .deb file we use as source only supports x86_64 linux. * Set meta.sourceProvenance - the .deb file we use as source contains x86_64 linux binaries. --- pkgs/servers/deconz/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/deconz/default.nix b/pkgs/servers/deconz/default.nix index ae1fb6119187..0b0d9840f016 100644 --- a/pkgs/servers/deconz/default.nix +++ b/pkgs/servers/deconz/default.nix @@ -77,7 +77,9 @@ stdenv.mkDerivation rec { description = "Manage Zigbee network with ConBee, ConBee II or RaspBee hardware"; homepage = "https://www.dresden-elektronik.com/wireless/software/deconz.html"; license = licenses.unfree; - platforms = with platforms; linux; + platforms = with platforms; [ "x86_64-linux" ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; maintainers = with maintainers; [ bjornfor ]; + mainProgram = "deCONZ"; }; }