-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
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
Build failure: mozillavpn #349632
Comments
Hey, quick question if you have the time. I've tried applying the modified file from your PR as an overlay. I've put the following in my flake.nix for the sytem packages: perseus = nixpkgs.lib.nixosSystem {
specialArgs = { inherit home-manager; };
modules = [
{
nixpkgs.overlays = [
(self: super: {
mozillavpn = super.callPackage ./overlays/mozillavpn.nix { };
})
];
} and this in my home manager configuration: home-manager.users.elias = { pkgs, ... }: {
home = {
stateVersion = "23.05";
username = "elias";
homeDirectory = "/home/elias";
};
nixpkgs = {
overlays = [
(self: super: {
mozillavpn = super.callPackage ../../overlays/mozillavpn.nix { };
})
];
}; And while my system builds again, if I try to run the vpn, I get: I was actually quite surprised, when initially just putting the overlay in home-manager wasn't enough, since that's the only place I use the package |
@Elias-Graf The segfault is addressed by |
Steps To Reproduce
Steps to reproduce the behavior:
inputs.nixpkgs.url = flake:nixpkgs/nixos-unstable;
services.mozillavpn.enable = true;
sudo nixos-rebuild dry-activate
Build log
Full logs: https://gist.github.com/devurandom/9b6d29eb81dabb7de6ad8f4a02a2c69b
Additional context
My
flake.lock
:Notify maintainers
@andersk
Metadata
Please run
nix-shell -p nix-info --run "nix-info -m"
and paste the result.Add a 👍 reaction to issues you find important.
The text was updated successfully, but these errors were encountered: