statifier: fix meta.platforms syntax

Changed files
+2 -2
pkgs
os-specific
linux
statifier
+2 -2
pkgs/os-specific/linux/statifier/default.nix
···
sed -e s@/usr/@"$out/"@g -i */Makefile src/statifier
sed -e s@/bin/bash@"${stdenv.shell}"@g -i src/*.sh
'';
-
+
meta = with stdenv.lib; {
description = "Tool for creating static Linux binaries";
-
platforms = with platforms; [ linux ];
+
platforms = with platforms; linux;
};
}