about summary refs log tree commit diff
path: root/pkgs/tools/system/foremost
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/system/foremost
parent8fe518e763917f478dc5e76eae7b2aea9c582cad (diff)
Convert some *Flags from strings to lists
Diffstat (limited to 'pkgs/tools/system/foremost')
-rw-r--r--pkgs/tools/system/foremost/default.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/tools/system/foremost/default.nix b/pkgs/tools/system/foremost/default.nix
index 0e502edc2893c..af28565f46619 100644
--- a/pkgs/tools/system/foremost/default.nix
+++ b/pkgs/tools/system/foremost/default.nix
@@ -9,6 +9,16 @@ stdenv.mkDerivation rec {
     url = "http://foremost.sourceforge.net/pkg/${name}.tar.gz";
   };
 
+  patches = [ ./makefile.patch ];
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  enableParallelBuilding = true;
+
+  preInstall = ''
+    mkdir -p $out/{bin,share/man/man8}
+  '';
+
   meta = with stdenv.lib; {
     inherit version;
     description = "Recover files based on their contents";
@@ -26,14 +36,4 @@ stdenv.mkDerivation rec {
     platforms = platforms.linux;
     maintainers = with maintainers; [ nckx ];
   };
-
-  patches = [ ./makefile.patch ];
-
-  makeFlags = "PREFIX=$(out)";
-
-  enableParallelBuilding = true;
-
-  preInstall = ''
-    mkdir -p $out/{bin,share/man/man8}
-  '';
 }