Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[LW-10649] Fix installing & running with strict AppArmor #3207

Merged
merged 9 commits into from
Aug 5, 2024
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## vNext

### Fixes

- Fixed installation and running on Ubuntu 24.04 LTS with AppArmor enabled by removing the `chroot` ([PR 3207](https://github.com/input-output-hk/daedalus/pull/3207))

## 5.4.0

### Fixes
Expand Down
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
tullia.flake = false; # otherwie, +1k dependencies in flake.lock…
flake-compat.url = "github:input-output-hk/flake-compat";
flake-compat.flake = false;
nix-bundle-exe.url = "github:3noch/nix-bundle-exe";
nix-bundle-exe.flake = false;
};

outputs = inputs: let
Expand Down
62 changes: 0 additions & 62 deletions installers/nix/linux.nix

This file was deleted.

200 changes: 0 additions & 200 deletions installers/nix/nix-installer.nix

This file was deleted.

2 changes: 1 addition & 1 deletion nix/devshells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ let
darwin.cctools
xcbuild
] else [
internal.electronBin
internal.relocatableElectron
winePackages.minimal
]));
name = "daedalus";
Expand Down
1 change: 1 addition & 0 deletions nix/internal/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ rec {
srcWithoutNix = pkgs.lib.cleanSourceWith {
src = inputs.self;
filter = name: type: !(type == "regular" && (
pkgs.lib.hasInfix "-source/nix/" name ||
pkgs.lib.hasSuffix ".nix" name ||
pkgs.lib.hasSuffix ".hs" name ||
pkgs.lib.hasSuffix ".cabal" name
Expand Down
Loading
Loading