rucksack: restrict to x86 linux platforms

This commit is contained in:
Renaud 2019-11-16 19:11:21 +01:00 committed by GitHub
parent 57a19cb5b6
commit c19ab4587e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Texture packer and resource bundler";
platforms = platforms.unix;
platforms = [ "i686-linux" "x86_64-linux" ]; # fails on Darwin and AArch64
homepage = https://github.com/andrewrk/rucksack;
license = licenses.mit;
maintainers = [ maintainers.andrewrk ];