Not the author. But thank you, I didn't know that.
captainkangaroo
joined 1 year ago
110
Intel Linux Patch Would Report Outdated CPU Microcode As A Security Vulnerability
(www.phoronix.com)
124
AMD Linux Graphics Driver To Switch To More Aggressive Power Heuristics By Default
(www.phoronix.com)
Interesting....TIL again!
What you're doing is equivalent to
nix-shell -p "grim slurp"
Which won't work because nix-shell expects
nix-shell -p "grim" "slurp"
Which then becomes
{...}@args: with import <nixpkgs> args; (pkgs.runCommandCC or pkgs.runCommand) "shell" { buildInputs = [ (grim) (slurp) ]; } ""
According to the manual
nix-shell --packages
interprets each command line arguments as attribute names inside the Nix packages collection.
The error message is because you are giving multiple package names as a single argument.
I am not the author. Just thought this was interesting.
view more: next ›
That actually is impressive! I like your style. Curious, how long did it take you to get to this point?