about summary refs log tree commit diff
path: root/pkgs/tools/misc/file
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-06 10:23:23 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-08-06 10:23:23 +0200
commit55395e213014e3d1063f2d758fe69539b45539e5 (patch)
tree5c270acb64002ca88018eeb4eca3a3471a008202 /pkgs/tools/misc/file
parent143fe598ba755c98959c3d586ee56595a8acf7c1 (diff)
file: format
Diffstat (limited to 'pkgs/tools/misc/file')
-rw-r--r--pkgs/tools/misc/file/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/misc/file/default.nix b/pkgs/tools/misc/file/default.nix
index cc56205243d54..108cc5b82fd64 100644
--- a/pkgs/tools/misc/file/default.nix
+++ b/pkgs/tools/misc/file/default.nix
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) file;
   buildInputs = [ zlib ]
-              ++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
+    ++ lib.optional stdenv.hostPlatform.isWindows libgnurx;
 
   doCheck = true;
 
@@ -23,6 +23,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     homepage = "https://darwinsys.com/file";
     description = "A program that shows the type of files";
+    maintainers = with maintainers; [ ];
     license = licenses.bsd2;
     platforms = platforms.all;
   };