summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-04-26 17:53:32 +0300
committerArtturin <Artturin@artturin.com>2022-04-26 17:53:32 +0300
commit8ebd3c038979180ad64389bc1b94a7dea6186e25 (patch)
tree2e9a3d6ae9977af0b0b83ea6c11f6f6382866390
parent0e518ad8d9cbd98238b4903f6330c9cfe1487c19 (diff)
downloadnixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar.gz
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar.bz2
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar.lz
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar.xz
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.tar.zst
nixpkgs-8ebd3c038979180ad64389bc1b94a7dea6186e25.zip
squashfsTools: enable strictDeps
-rw-r--r--pkgs/tools/filesystems/squashfs/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/filesystems/squashfs/default.nix b/pkgs/tools/filesystems/squashfs/default.nix
index 340c5add295..914d4aa33c2 100644
--- a/pkgs/tools/filesystems/squashfs/default.nix
+++ b/pkgs/tools/filesystems/squashfs/default.nix
@@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
     ./4k-align.patch
   ] ++ lib.optional stdenv.isDarwin ./darwin.patch;
 
-  buildInputs = [ zlib xz zstd lz4 lzo which help2man ];
+  strictDeps = true;
+  nativeBuildInputs = [ help2man which ];
+  buildInputs = [ zlib xz zstd lz4 lzo ];
 
   preBuild = ''
     cd squashfs-tools