summary refs log tree commit diff
path: root/pkgs/tools/misc/file/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-08-07 12:02:05 +0000
committerGitHub <noreply@github.com>2021-08-07 12:02:05 +0000
commitcfc792e1933e67aea066c2ff3b311dba9342312e (patch)
tree3531d96d4f0b413869ddd550c1c99d666a189752 /pkgs/tools/misc/file/default.nix
parentf6b209b8919bde8eeadf32b13435b1f235e52b7e (diff)
parent1b4a28fed4a3b60d37c171457a9da6016ed2146c (diff)
downloadnixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar.gz
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar.bz2
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar.lz
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar.xz
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.tar.zst
nixpkgs-cfc792e1933e67aea066c2ff3b311dba9342312e.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/misc/file/default.nix')
-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 700700e862e..2c1e634023b 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;
 
   patches = [
     # Fix the mime type detection of xz file. Is merged in master.
@@ -31,6 +31,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;
   };