I am following the [installation guide of nix-alien](https://github.com/thiagokokada/nix-alien#nixos-installation). This complains error: in pure evaluation mode, 'fetchTarball' requires a 'sha256' argument Thus, I set the sha256 sum: ``` { ... }: let nix-alien-pkgs = import ( builtins.fetchTarball { url = "https://github.com/thiagokokada/nix-alien/tarball/master"; sha256 = "1pibz7la81s9ijyq7m3zv830waw1k6km227gab580086kl8kcpmm"; } ) { }; in { environment.systemPackages = with nix-alien-pkgs; [ nix-alien ]; # Optional, but this is needed for `nix-alien-ld` command programs.nix-ld.enable = true; } ``` Then, however, I get error: 'builtins.storePath' is not allowed in pure evaluation mode Which I am unable to solve. --- Can the installation guide be refined to guide noobs? :innocent:
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by koppor and has received 4 comments.