beets: fix tarball evaluation by asserting isLinux

/cc #10069.
This commit is contained in:
Vladimír Čunát 2015-09-26 09:29:13 +02:00
parent 4dda511ec3
commit 1f73d482d6

View file

@ -136,7 +136,7 @@ in buildPythonPackage rec {
runHook preCheck
LANG=en_US.UTF-8 \
LOCALE_ARCHIVE=${glibcLocales}/lib/locale/locale-archive \
LOCALE_ARCHIVE=${assert stdenv.isLinux; glibcLocales}/lib/locale/locale-archive \
BEETS_TEST_SHELL="${testShell}" \
BASH_COMPLETION_SCRIPT="${completion}" \
HOME="$(mktemp -d)" \
@ -168,5 +168,6 @@ in buildPythonPackage rec {
homepage = http://beets.radbox.org;
license = licenses.mit;
maintainers = with maintainers; [ aszlig iElectric pjones ];
platforms = platforms.linux;
};
}