summary refs log tree commit diff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2022-04-26 17:55:29 +0300
committerArtturin <Artturin@artturin.com>2022-04-26 20:31:30 +0300
commit7ed2f7d1ba20604621271c229ff499c05621e7b8 (patch)
tree49ab52290332e2e95d9c70158bf1835f3522f579
parent8ebd3c038979180ad64389bc1b94a7dea6186e25 (diff)
downloadnixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar.gz
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar.bz2
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar.lz
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar.xz
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.tar.zst
nixpkgs-7ed2f7d1ba20604621271c229ff499c05621e7b8.zip
squashfsTools: pull patch to make manpages reproducible
adds -n to gzip
-rw-r--r--pkgs/tools/filesystems/squashfs/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/squashfs/default.nix b/pkgs/tools/filesystems/squashfs/default.nix
index 914d4aa33c2..0b2d6ae9cd6 100644
--- a/pkgs/tools/filesystems/squashfs/default.nix
+++ b/pkgs/tools/filesystems/squashfs/default.nix
@@ -24,6 +24,11 @@ stdenv.mkDerivation rec {
   };
 
   patches = [
+    # remove once https://github.com/plougher/squashfs-tools/pull/177 is merged and in a release
+    (fetchpatch {
+      url = "https://github.com/plougher/squashfs-tools/commit/6100e82c7e7f18f503c003c67c87791025d5f01b.patch";
+      sha256 = "sha256-bMBQsbSKQ4E7r9avns2QaomGAYl3s82m58gYyTQdB08=";
+    })
     # This patch adds an option to pad filesystems (increasing size) in
     # exchange for better chunking / binary diff calculation.
     ./4k-align.patch