Merge pull request #305783 from nrabulinski/incus-client

incus/client: make platform list more permissive

authored by Adam C. Stephens and committed by GitHub 4ca10a41 4b636b6e

+4 -1
+4 -1
pkgs/by-name/in/incus/client.nix
··· 16 17 buildGoModule { 18 inherit 19 - meta 20 patches 21 pname 22 src ··· 39 40 # don't run the full incus test suite 41 doCheck = false; 42 }
··· 16 17 buildGoModule { 18 inherit 19 patches 20 pname 21 src ··· 38 39 # don't run the full incus test suite 40 doCheck = false; 41 + 42 + meta = meta // { 43 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 44 + }; 45 }