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>...")
 
(Add warning about the new wiki)
Line 1: Line 1:
 +
{{warning|1=You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Valid_Nix_store_path_names.}}
 +
 
All files and folders in <code>/nix/store</code> match the regular expression
 
All files and folders in <code>/nix/store</code> match the regular expression
  

Revision as of 06:58, 5 April 2024

Warning: You are reading an article on the deprecated unofficial wiki. For the up to date version of this article, see https://wiki.nixos.org/wiki/Valid_Nix_store_path_names.

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