-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
Description
Describe the bug
nix build -f thisexpr.nix crashes with a segmentation violation.
Steps To Reproduce
- Get nix (Nix) 2.9.0pre20220512_d354fc3 (in my case, via https://github.com/nixos/nixpkgs/archive/b62ada430501de88dfbb08cea4eb98ead3a5e3e7.tar.gz)
nix build -f thisexpr.nix- See segfault
thisexpr.nix:
let
pkgs = import (builtins.fetchGit {
url = "https://github.com/NixOS/nixpkgs";
rev = "838eefb4f93f2306d4614aafb9b2375f315d917f";
}) { };
mach-nix = import (pkgs.fetchFromGitHub {
owner = "DavHau";
repo = "mach-nix";
rev = "refs/tags/3.4.0";
hash = "sha256:19vh5qfqlml22d6mpi34nnbh71i259sh223l4dr4axar3byy1408";
});
in
pkgs.callPackage mach-nix
Expected behavior
A nix-level error or a successful build