Move url-name utility to libexpr/flake

This commit is contained in:
Felix Uhl 2023-12-21 22:45:21 +01:00
parent 17c202b3ea
commit 26d7b0c793
5 changed files with 4 additions and 3 deletions

View file

@ -11,7 +11,7 @@
#include "profiles.hh"
#include "names.hh"
#include "url.hh"
#include "url-name.hh"
#include "flake/url-name.hh"
#include <nlohmann/json.hpp>
#include <regex>

View file

@ -1,4 +1,4 @@
#include "url-name.hh"
#include "flake/url-name.hh"
#include <gtest/gtest.h>
namespace nix {

View file

@ -16,7 +16,8 @@ endif
libexpr-tests_SOURCES := \
$(wildcard $(d)/*.cc) \
$(wildcard $(d)/value/*.cc)
$(wildcard $(d)/value/*.cc) \
$(wildcard $(d)/flake/*.cc)
libexpr-tests_EXTRA_INCLUDES = \
-I tests/unit/libexpr-support \