Difference between revisions of "Valid Nix store path names"

From NixOS Wiki
Jump to: navigation, search
(Created page with "All files and folders in <code>/nix/store</code> match the regular expression <syntaxHighlight> [0-9a-f]{32}-[-.+_0-9a-zA-Z]+ </syntaxHighlight> * <code>[0-9a-f]{32}</code>...")
 
m (rollback unauthorized mass edits)
Tag: Rollback
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 11:04, 6 April 2024

All files and folders in /nix/store match the regular expression

[0-9a-f]{32}-[-.+_0-9a-zA-Z]+
  • [0-9a-f]{32} is the hash
  • [-.+_0-9a-zA-Z]+ is the name

See also