about summary refs log tree commit diff
path: root/pkgs/games/n2048/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/n2048/default.nix')
-rw-r--r--pkgs/games/n2048/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/n2048/default.nix b/pkgs/games/n2048/default.nix
index 42424fe9ef4ec..b3d06a51fd3c8 100644
--- a/pkgs/games/n2048/default.nix
+++ b/pkgs/games/n2048/default.nix
@@ -19,14 +19,14 @@ stdenv.mkDerivation {
     inherit (s) url sha256;
   };
   makeFlags = [
-    ''DESTDIR=$(out)''
+    "DESTDIR=$(out)"
   ];
   preInstall = ''
     mkdir -p "$out"/{share/man,bin}
   '';
   meta = {
     inherit (s) version;
-    description = ''Console implementation of 2048 game'';
+    description = "Console implementation of 2048 game";
     license = lib.licenses.bsd2;
     maintainers = [lib.maintainers.raskin];
     platforms = lib.platforms.linux;