File tree Expand file tree Collapse file tree 3 files changed +30
-11
lines changed Expand file tree Collapse file tree 3 files changed +30
-11
lines changed Original file line number Diff line number Diff line change @@ -132,11 +132,16 @@ There is a handy `install-deps.sh` script included in the repository and PyPI pa
132132
1331332 . If you need ** squashfs support** , install sasquatch:
134134
135- curl -L -o sasquatch_1.0_amd64.deb https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v4.5.1-4/sasquatch_1.0_amd64.deb
136- sudo dpkg -i sasquatch_1.0_amd64.deb
137- rm sasquatch_1.0_amd64.deb
138- 3 . If you need ** squashfs(arm64) support** , install sasquatch(arm64):
139-
140- curl -L -o sasquatch_1.0_arm64.deb https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v4.5.1-4/sasquatch_1.0_arm64.deb
141- sudo dpkg -i sasquatch_1.0_arm64.deb
142- rm sasquatch_1.0_arm64.deb
135+ curl -L -o sasquatch_1.0.deb "https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v4.5.1-4/sasquatch_1.0_$(dpkg --print-architecture).deb"
136+ sudo dpkg -i sasquatch_1.0.deb
137+ rm sasquatch_1.0.deb
138+
139+ 4 . We maintain a fork of e2fsprogs based on Debian upstream, with some security fixes. You can install it this way:
140+
141+ curl -L -o libext2fs2_1.47.0-3.ok1.deb "https://github.com/onekey-sec/e2fsprogs/releases/download/v1.47.0-3.ok1/libext2fs2_1.47.0-3.ok1_$(dpkg --print-architecture).deb"
142+ dpkg -i libext2fs2_1.47.0-3.ok1.deb
143+ rm -f libext2fs2_1.47.0-3.ok1.deb
144+
145+ curl -L -o e2fsprogs_1.47.0-3.ok1.deb "https://github.com/onekey-sec/e2fsprogs/releases/download/v1.47.0-3.ok1/e2fsprogs_1.47.0-3.ok1_$(dpkg --print-architecture).deb"
146+ dpkg -i e2fsprogs_1.47.0-3.ok1.deb
147+ rm -f e2fsprogs_1.47.0-3.ok1.deb
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ inputs: final: prev:
99 ( super : {
1010 pname = "e2fsprogs-nofortify" ;
1111 hardeningDisable = ( super . hardeningDisable or [ ] ) ++ [ "fortify3" ] ;
12+
13+ version = "1.47.0-3.ok1" ;
14+ src = prev . fetchurl {
15+ url = "https://github.com/onekey-sec/e2fsprogs/archive/refs/tags/v1.47.0-3.ok1.tar.gz" ;
16+ hash = "sha256-fsLUySjAdgnRp5m405a4Egso+LXNLxR9Y7WHt8qAvFM=" ;
17+ } ;
1218 } ) ;
1319
1420 # Own package updated independently of nixpkgs
Original file line number Diff line number Diff line change @@ -15,6 +15,14 @@ apt-get install --no-install-recommends -y \
1515 libmagic1 \
1616 zstd
1717
18- curl -L -o sasquatch_1.0_amd64.deb https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v4.5.1-4/sasquatch_1.0_amd64.deb
19- dpkg -i sasquatch_1.0_amd64.deb
20- rm -f sasquatch_1.0_amd64.deb
18+ curl -L -o sasquatch_1.0.deb " https://github.com/onekey-sec/sasquatch/releases/download/sasquatch-v4.5.1-4/sasquatch_1.0_$( dpkg --print-architecture) .deb"
19+ dpkg -i sasquatch_1.0.deb
20+ rm -f sasquatch_1.0.deb
21+
22+ curl -L -o libext2fs2_1.47.0-3.ok1.deb " https://github.com/onekey-sec/e2fsprogs/releases/download/v1.47.0-3.ok1/libext2fs2_1.47.0-3.ok1_$( dpkg --print-architecture) .deb"
23+ dpkg -i libext2fs2_1.47.0-3.ok1.deb
24+ rm -f libext2fs2_1.47.0-3.ok1.deb
25+
26+ curl -L -o e2fsprogs_1.47.0-3.ok1.deb " https://github.com/onekey-sec/e2fsprogs/releases/download/v1.47.0-3.ok1/e2fsprogs_1.47.0-3.ok1_$( dpkg --print-architecture) .deb"
27+ dpkg -i e2fsprogs_1.47.0-3.ok1.deb
28+ rm -f e2fsprogs_1.47.0-3.ok1.deb
You can’t perform that action at this time.
0 commit comments