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: 09dde33c1912
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 88571219d97f
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Jun 25, 2019

  1. nix-channel: Don't fetch binary-cache-url

    This has been ignored since the Perl->C++ rewrite.
    edolstra committed Jun 25, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    edolstra Eelco Dolstra
    Copy the full SHA
    8857121 View commit details
Showing with 8 additions and 35 deletions.
  1. +2 −6 corepkgs/unpack-channel.nix
  2. +5 −18 doc/manual/command-ref/nix-channel.xml
  3. +1 −2 src/libstore/store-api.hh
  4. +0 −9 src/nix-channel/nix-channel.cc
8 changes: 2 additions & 6 deletions corepkgs/unpack-channel.nix
Original file line number Diff line number Diff line change
@@ -18,21 +18,17 @@ let
if [ * != $channelName ]; then
mv * $out/$channelName
fi
if [ -n "$binaryCacheURL" ]; then
mkdir $out/binary-caches
echo -n "$binaryCacheURL" > $out/binary-caches/$channelName
fi
'';

in

{ name, channelName, src, binaryCacheURL ? "" }:
{ name, channelName, src }:

derivation {
system = builtins.currentSystem;
builder = shell;
args = [ "-e" builder ];
inherit name channelName src binaryCacheURL;
inherit name channelName src;

PATH = "${nixBinDir}:${coreutils}";

23 changes: 5 additions & 18 deletions doc/manual/command-ref/nix-channel.xml
Original file line number Diff line number Diff line change
@@ -31,12 +31,11 @@

<refsection><title>Description</title>

<para>A Nix channel is a mechanism that allows you to automatically stay
up-to-date with a set of pre-built Nix expressions. A Nix channel is
just a URL that points to a place containing both a set of Nix
expressions and a pointer to a binary cache. <phrase
condition="manual">See also <xref linkend="sec-channels"
/>.</phrase></para>
<para>A Nix channel is a mechanism that allows you to automatically
stay up-to-date with a set of pre-built Nix expressions. A Nix
channel is just a URL that points to a place containing a set of Nix
expressions. <phrase condition="manual">See also <xref
linkend="sec-channels" />.</phrase></para>

<para>This command has the following operations:

@@ -172,18 +171,6 @@ following files:</para>

</varlistentry>

<varlistentry><term><filename>binary-cache-url</filename></term>

<listitem><para>A file containing the URL to a binary cache (such
as <uri>https://cache.nixos.org</uri>). Nix will automatically
check this cache for pre-built binaries, if the user has
sufficient rights to add binary caches. For instance, in a
multi-user Nix setup, the binary caches provided by the channels
of the root user are used automatically, but caches corresponding
to the channels of non-root users are ignored.</para></listitem>

</varlistentry>

</variablelist>

</refsection>
3 changes: 1 addition & 2 deletions src/libstore/store-api.hh
Original file line number Diff line number Diff line change
@@ -766,8 +766,7 @@ StoreType getStoreType(const std::string & uri = settings.storeUri.get(),
const std::string & stateDir = settings.nixStateDir);

/* Return the default substituter stores, defined by the
‘substituters’ option and various legacy options like
‘binary-caches’. */
‘substituters’ option and various legacy options. */
std::list<ref<Store>> getDefaultSubstituters();


9 changes: 0 additions & 9 deletions src/nix-channel/nix-channel.cc
Original file line number Diff line number Diff line change
@@ -113,15 +113,6 @@ static void update(const StringSet & channelNames)
}

if (!unpacked) {
// The URL doesn't unpack directly, so let's try treating it like a full channel folder with files in it
// Check if the channel advertises a binary cache.
DownloadRequest request(url + "/binary-cache-url");
try {
auto dlRes = dl->download(request);
extraAttrs = "binaryCacheURL = \"" + *dlRes.data + "\";";
} catch (DownloadError & e) {
}

// Download the channel tarball.
try {
filename = dl->downloadCached(store, CachedDownloadRequest(url + "/nixexprs.tar.xz")).path;