- cross-posted to:
- hackernews
- cross-posted to:
- hackernews
Fair criticism, although the larger discussion thread this garnered earlier this year was an interesting read. Over +300 comments:
Fair criticism, although the larger discussion thread this garnered earlier this year was an interesting read. Over +300 comments:
The comment thread sparked a few new questions for me.
What recently changed with steam-run?
Is using
pkgs.appimageTools.defaultFhsEnvArgswithpkgs.buildFHSUserEnva suitable alternative?#!/usr/bin/env nix-shell { pkgs ? import <nixpkgs> { } }: ( let base = pkgs.appimageTools.defaultFhsEnvArgs; in pkgs.buildFHSUserEnv (base // { name = "FHS"; targetPkgs = pkgs: (with pkgs; [ /* add additional packages here e.g */ pcre tzdata ]); runScript = "bash"; extraOutputsToInstall = [ "dev" ]; }) ).env