summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/aha
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-26 18:44:44 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-11-26 23:45:31 +0100
commit2798b02ad03ebdc104fecc6439c0bcf5bb32fe6c (patch)
tree64bf789924f9b17cf4ab32f75692c0c10ed4f2f6 /pkgs/tools/text/aha
parent8fe518e763917f478dc5e76eae7b2aea9c582cad (diff)
Convert some *Flags from strings to lists
Diffstat (limited to 'pkgs/tools/text/aha')
-rw-r--r--pkgs/tools/text/aha/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/text/aha/default.nix b/pkgs/tools/text/aha/default.nix
index 60114b7b3f3a..152a46cd50c4 100644
--- a/pkgs/tools/text/aha/default.nix
+++ b/pkgs/tools/text/aha/default.nix
@@ -11,6 +11,10 @@ stdenv.mkDerivation {
owner = "theZiz";
};
+ makeFlags = [ "PREFIX=$(out)" ];
+
+ enableParallelBuilding = true;
+
meta = with stdenv.lib; {
inherit version;
description = "ANSI HTML Adapter";
@@ -22,8 +26,4 @@ stdenv.mkDerivation {
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
-
- makeFlags = "PREFIX=$(out)";
-
- enableParallelBuilding = true;
}