1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

Improve incremental build

This commit is contained in:
Eelco Dolstra 2019-04-16 14:10:05 +02:00
parent aecf07b1d6
commit ba66455636
4 changed files with 5 additions and 2 deletions

View file

@ -3,6 +3,7 @@
#include "common-args.hh"
#include "shared.hh"
#include "store-api.hh"
#include "primops/flake.hh"
using namespace nix;

View file

@ -1,7 +1,6 @@
#pragma once
#include "args.hh"
#include "primops/flake.hh"
#include "common-eval-args.hh"
#include <optional>
@ -48,7 +47,7 @@ struct GitRepoCommand : virtual Args
struct FlakeCommand : virtual Args
{
FlakeUri flakeUri;
std::string flakeUri;
FlakeCommand()
{

View file

@ -3,6 +3,8 @@
#include "shared.hh"
#include "progress-bar.hh"
#include "eval.hh"
#include "primops/flake.hh"
#include <nlohmann/json.hpp>
#include <queue>

View file

@ -7,6 +7,7 @@
#include "get-drvs.hh"
#include "store-api.hh"
#include "shared.hh"
#include "primops/flake.hh"
#include <regex>