Skip to content

Commit

Permalink
Fix nix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvorogme committed Jun 11, 2024
1 parent 8e3dffe commit 633f2ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ton-x86_64-linux-python-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Install deps
run: |
sudo apt update -y
sudo apt install -y git curl xz-utils build-essential libboost-system-dev libboost-thread-dev libboost-program-options-dev libboost-test-dev
sudo apt install -y git curl xz-utils
- uses: actions/checkout@v4
with:
Expand Down
12 changes: 9 additions & 3 deletions assembly/nix/linux-arm64-static.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,15 @@ stdenv.mkDerivation {
];

buildInputs = with pkgs;
[
pkgsStatic.openssl microhttpdmy pkgsStatic.zlib pkgsStatic.libsodium.dev pkgsStatic.secp256k1 glibc.static
];
[
pkgsStatic.openssl
microhttpdmy
pkgsStatic.zlib
pkgsStatic.libsodium.dev
pkgsStatic.secp256k1
glibc.static
boost
];

makeStatic = true;
doCheck = true;
Expand Down

0 comments on commit 633f2ca

Please sign in to comment.