Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1b057929885f
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 54aff8430c4e
Choose a head ref
  • 1 commit
  • 10 files changed
  • 1 contributor

Commits on Jun 5, 2019

  1. Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    54aff84 View commit details
2 changes: 1 addition & 1 deletion src/libexpr/eval.cc
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
#include "eval-inline.hh"
#include "download.hh"
#include "json.hh"
#include "primops/flake.hh"
#include "flake/flake.hh"

#include <algorithm>
#include <cstring>
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
#include "lockfile.hh"
#include "primops.hh"
#include "eval-inline.hh"
#include "fetchGit.hh"
#include "primops/fetchGit.hh"
#include "download.hh"
#include "args.hh"

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 6 additions & 1 deletion src/libexpr/local.mk
Original file line number Diff line number Diff line change
@@ -4,7 +4,12 @@ libexpr_NAME = libnixexpr

libexpr_DIR := $(d)

libexpr_SOURCES := $(wildcard $(d)/*.cc) $(wildcard $(d)/primops/*.cc) $(d)/lexer-tab.cc $(d)/parser-tab.cc
libexpr_SOURCES := \
$(wildcard $(d)/*.cc) \
$(wildcard $(d)/primops/*.cc) \
$(wildcard $(d)/flake/*.cc) \
$(d)/lexer-tab.cc \
$(d)/parser-tab.cc

libexpr_LIBS = libutil libstore

2 changes: 1 addition & 1 deletion src/nix/flake.cc
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
#include "progress-bar.hh"
#include "eval.hh"
#include "eval-inline.hh"
#include "primops/flake.hh"
#include "flake/flake.hh"
#include "get-drvs.hh"
#include "store-api.hh"

2 changes: 1 addition & 1 deletion src/nix/installables.cc
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
#include "get-drvs.hh"
#include "store-api.hh"
#include "shared.hh"
#include "primops/flake.hh"
#include "flake/flake.hh"

#include <regex>
#include <queue>