Fix poetry (#2672)

* fix pwndbg-gdb for portable build

* fix poetry lock
pull/2675/head
patryk4815 11 months ago committed by GitHub
parent e5b1925d8d
commit 2546eef4ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -114,7 +114,7 @@ jobs:
nix_path: nixpkgs=channel:nixos-unstable
- name: install poetry
run: nix profile install nixpkgs#poetry
run: nix profile install --inputs-from . nixpkgs#poetry
- name: check poetry.lock
run: poetry check --lock

@ -36,8 +36,8 @@
final: prev:
nixpkgs.lib.optionalAttrs prev.stdenv.isDarwin {
gdb = prev.gdb.override {
# dynamic version of libiconv use to much of `dlopen`
libiconv = prev.pkgsStatic.libiconv;
# Darwin version of libiconv causes issues with our portable build
libiconv = prev.pkgsStatic.libiconvReal;
};
};
pkgsBySystem = forAllSystems (

Loading…
Cancel
Save