summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-07-20 12:04:43 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-07-20 12:32:01 +0200
commite4fcddf1774785f00ff07e759086a4b8ce9e06d8 (patch)
tree512d376c7d7265633f24fe9058d5335c8de7a55d
parent8ac9c708b914248b9082fcbb77e14bc8d4549026 (diff)
statifier: fix meta.platforms syntax
-rw-r--r--pkgs/os-specific/linux/statifier/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/statifier/default.nix b/pkgs/os-specific/linux/statifier/default.nix
index 0e1ecdd6d7d5..dd62d6d9d071 100644
--- a/pkgs/os-specific/linux/statifier/default.nix
+++ b/pkgs/os-specific/linux/statifier/default.nix
@@ -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;
};
}