mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 01:24:47 +00:00
sasquatch: format package.nix to match RFC style
This commit is contained in:
parent
17fb7dfa72
commit
289411e92b
@ -1,13 +1,14 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, lz4
|
||||
, lzo
|
||||
, which
|
||||
, xz
|
||||
, zlib
|
||||
, zstd
|
||||
, bigEndian ? false
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
lz4,
|
||||
lzo,
|
||||
which,
|
||||
xz,
|
||||
zlib,
|
||||
zstd,
|
||||
bigEndian ? false,
|
||||
}:
|
||||
|
||||
let
|
||||
@ -26,7 +27,13 @@ let
|
||||
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = [ which ];
|
||||
buildInputs = [ zlib xz zstd lz4 lzo ];
|
||||
buildInputs = [
|
||||
zlib
|
||||
xz
|
||||
zstd
|
||||
lz4
|
||||
lzo
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
cd squashfs-tools
|
||||
|
Loading…
Reference in New Issue
Block a user