3
0
Fork 0
forked from mirrors/nixpkgs

anbox: fix build on x86_64-linux

`x86-64-linux` was a typo; there needs to be an underscore in there.
This commit is contained in:
Benjamin Staffin 2019-03-23 15:57:07 -04:00
parent 4446452347
commit fba697daef

View file

@ -132,7 +132,7 @@ stdenv.mkDerivation rec {
description = "Android in a box";
license = licenses.gpl2;
maintainers = with maintainers; [ edwtjo ];
platforms = [ "armv7l-linux" "aarch64-linux" "x86-64-linux" ];
platforms = [ "armv7l-linux" "aarch64-linux" "x86_64-linux" ];
};
}