statifier: fix meta.platforms syntax

This commit is contained in:
Vladimír Čunát 2015-07-20 12:04:43 +02:00
parent 8ac9c708b9
commit e4fcddf177

View file

@ -17,9 +17,9 @@ stdenv.mkDerivation {
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;
};
}