Skip to content

Commit

Permalink
add missing isStatic in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Nov 26, 2024
1 parent 250ef63 commit b6faf06
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
extraPullNames: nix-community
- name: Build release
run: |
nix-build --argstr target ${{ matrix.target }}
nix-build --argstr target ${{ matrix.target }} --arg isStatic true
- name: Upload release artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
1 change: 0 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ let
stdenv = pkgs.stdenv;
apple-sdk = if pkgs.stdenv.hostPlatform.isx86_64 then pkgs.apple-sdk_13 else pkgs.apple-sdk_14;
installShellFiles = false;
windows = pkgs.windows;
installShellCompletions = false;
installManPages = false;
notmuch = pkgs.notmuch;
Expand Down
10 changes: 0 additions & 10 deletions package.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{ lib
, pkg-config
, rustPlatform
, windows
, fetchFromGitHub
, stdenv
, apple-sdk
Expand Down Expand Up @@ -29,15 +28,6 @@ rustPlatform.buildRustPackage rec {

cargoHash = "sha256-YS8IamapvmdrOPptQh2Ef9Yold0IK1XIeGs0kDIQ5b8=";

NIX_LDFLAGS = lib.optionals stdenv.hostPlatform.isWindows [
#"-L${windows.mcfgthreads}/lib"
#"-L${}/lib"
#"-L${windows.mingwrt}/lib"
#"-L${windows.w32api}/lib"
#"-lmcfgthread"
"-lunwind"
];

doCheck = false;
auditable = false;

Expand Down

0 comments on commit b6faf06

Please sign in to comment.