mirror of
https://github.com/NixOS/nix
synced 2025-07-06 21:41:48 +02:00
Move flakeIdRegex{,S}
from libutil
to flakeref.{cc,hh
It isn't used, and doesn't belong in `libutil`.
This commit is contained in:
parent
cede94dbf7
commit
b912f3a937
4 changed files with 5 additions and 4 deletions
|
@ -41,7 +41,4 @@ extern std::regex revRegex;
|
|||
/// A ref or revision, or a ref followed by a revision.
|
||||
const static std::string refAndOrRevRegex = "(?:(" + revRegexS + ")|(?:(" + refRegexS + ")(?:/(" + revRegexS + "))?))";
|
||||
|
||||
const static std::string flakeIdRegexS = "[a-zA-Z][a-zA-Z0-9_-]*";
|
||||
extern std::regex flakeIdRegex;
|
||||
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@ namespace nix {
|
|||
std::regex refRegex(refRegexS, std::regex::ECMAScript);
|
||||
std::regex badGitRefRegex(badGitRefRegexS, std::regex::ECMAScript);
|
||||
std::regex revRegex(revRegexS, std::regex::ECMAScript);
|
||||
std::regex flakeIdRegex(flakeIdRegexS, std::regex::ECMAScript);
|
||||
|
||||
ParsedURL parseURL(const std::string & url)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue