lol

beets: fix tarball evaluation by asserting isLinux

/cc #10069.

+2 -1
+2 -1
pkgs/tools/audio/beets/default.nix
··· 136 136 runHook preCheck 137 137 138 138 LANG=en_US.UTF-8 \ 139 - LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive \ 139 + LOCALE_ARCHIVE=${assert stdenv.isLinux; glibcLocales}/lib/locale/locale-archive \ 140 140 BEETS_TEST_SHELL="${testShell}" \ 141 141 BASH_COMPLETION_SCRIPT="${completion}" \ 142 142 HOME="$(mktemp -d)" \ ··· 168 168 homepage = http://beets.radbox.org; 169 169 license = licenses.mit; 170 170 maintainers = with maintainers; [ aszlig iElectric pjones ]; 171 + platforms = platforms.linux; 171 172 }; 172 173 }