Skip to content

Commit d6b0746

Browse files
committed
add zstd cli tool dependency install
1 parent 266266c commit d6b0746

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/actions/setup-dependencies/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
using: "composite"
88
steps:
99
- name: Install 3rd party from apt
10-
run: sudo apt install e2fsprogs p7zip-full unar zlib1g-dev liblzo2-dev lzop lziprecover img2simg libhyperscan-dev
10+
run: sudo apt install e2fsprogs p7zip-full unar zlib1g-dev liblzo2-dev lzop lziprecover img2simg libhyperscan-dev zstd
1111
shell: bash
1212

1313
- name: Install sasquatch

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
2121
xz-utils \
2222
zlib1g-dev \
2323
libmagic1 \
24-
libhyperscan5
24+
libhyperscan5 \
25+
zstd
2526
RUN curl -L -o sasquatch_1.0_amd64.deb https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v1.0/sasquatch_1.0_amd64.deb \
2627
&& dpkg -i sasquatch_1.0_amd64.deb \
2728
&& rm -f sasquatch_1.0_amd64.deb

default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
, unar
1717
, file
1818
, hyperscan
19+
, zstd
1920
}:
2021

2122
let
@@ -30,6 +31,7 @@ let
3031
sasquatch.bigEndian
3132
simg2img
3233
unar
34+
zstd
3335
];
3436

3537
self = mkPoetryApp {

0 commit comments

Comments
 (0)