Unterhaltung
Nachrichten
-
New in #nix 2.0:
> $ nix run --help
> Usage: nix run <FLAGS>... <INSTALLABLES>...
> Summary: run a shell in which the specified packages are available.
Sweet! Thank you, #nixos IRC!-
Up until now that has been `nix-shell -E 'with import <nixpkgs> {}; with import ./. {}; stdenv.mkDerivation { name="whatever"; buildInputs=[things i want]; }'`, and now it's just `nix run -f . things i want`. There has always been `nix-…
-