1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Platforms needs to be a list

Should this really be x86_64-linux only? Why?

svn path=/nixpkgs/trunk/; revision=30583
This commit is contained in:
Shea Levy 2011-11-28 15:49:14 +00:00
parent c13ff671a2
commit 7501456c94

View file

@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
homepage = http://opalang.org/;
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.kkallio ];
platforms = "x86_64-linux";
platforms = [ "x86_64-linux" ];
};
}