Merge branch 'master' into staging-next

This commit is contained in:
Jan Tojnar
2021-01-15 17:46:46 +01:00
1804 changed files with 7434 additions and 5627 deletions
+5 -5
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, zlib, xz
{ lib, stdenv, fetchFromGitHub, zlib, xz
, lz4
, zstd
}:
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
# This patch adds an option to pad filesystems (increasing size) in
# exchange for better chunking / binary diff calculation.
./4k-align.patch
] ++ stdenv.lib.optional stdenv.isDarwin ./darwin.patch;
] ++ lib.optional stdenv.isDarwin ./darwin.patch;
buildInputs = [ zlib xz zstd lz4 ];
@@ -32,8 +32,8 @@ stdenv.mkDerivation {
meta = {
homepage = "http://squashfs.sourceforge.net/";
description = "Tool for creating and unpacking squashfs filesystems";
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ ruuda ];
platforms = lib.platforms.unix;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ruuda ];
};
}