Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
Nix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nora Puchreiner
Nix
Commits
2c1711ae
Commit
2c1711ae
authored
10 years ago
by
Eelco Dolstra
Browse files
Options
Downloads
Patches
Plain Diff
nix-channel: Add --rollback flag
Fixes #368.
parent
c6849e2d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/manual/command-ref/nix-channel.xml
+54
-1
54 additions, 1 deletion
doc/manual/command-ref/nix-channel.xml
scripts/nix-channel.in
+14
-0
14 additions, 0 deletions
scripts/nix-channel.in
with
68 additions
and
1 deletion
doc/manual/command-ref/nix-channel.xml
+
54
−
1
View file @
2c1711ae
...
...
@@ -24,6 +24,7 @@
<arg
choice=
'plain'
><option>
--remove
</option>
<replaceable>
url
</replaceable></arg>
<arg
choice=
'plain'
><option>
--list
</option></arg>
<arg
choice=
'plain'
><option>
--update
</option>
<arg
rep=
'repeat'
><replaceable>
names
</replaceable></arg></arg>
<arg
choice=
'plain'
><option>
--rollback
</option>
<arg
choice=
'opt'
><replaceable>
generation
</replaceable></arg></arg>
</group>
</cmdsynopsis>
</refsynopsisdiv>
...
...
@@ -80,6 +81,14 @@ condition="manual">See also <xref linkend="sec-channels"
</varlistentry>
<varlistentry><term><option>
--rollback
</option>
[
<replaceable>
generation
</replaceable>
]
</term>
<listitem><para>
Reverts the previous call to
<command>
nix-channel
--update
</command>
. Optionally, you can specify a specific channel
generation number to restore.
</para></listitem>
</varlistentry>
</variablelist>
</para>
...
...
@@ -104,10 +113,54 @@ respectively.</para>
<para>
To subscribe to the Nixpkgs channel and install the GNU Hello package:
</para>
<screen>
$ nix-channel --add http://nixos.org/channels/nixpkgs-unstable
$ nix-channel --add http
s
://nixos.org/channels/nixpkgs-unstable
$ nix-channel --update
$ nix-env -iA nixpkgs.hello
</screen>
<para>
You can revert channel updates using
<option>
--rollback
</option>
:
</para>
<screen>
$ nix-instantiate --eval -E '(import
<
nixpkgs> {}).lib.nixpkgsVersion'
"14.04.527.0e935f1"
$ nix-channel --rollback
switching from generation 483 to 482
$ nix-instantiate --eval -E '(import
<
nixpkgs> {}).lib.nixpkgsVersion'
"14.04.526.dbadfad"
</screen>
</refsection>
<refsection><title>
Files
</title>
<variablelist>
<varlistentry><term><filename>
/nix/var/nix/profiles/
<replaceable>
username
</replaceable>
/channels
</filename></term>
<listitem><para><command>
nix-channel
</command>
uses a
<command>
nix-env
</command>
profile to keep track of previous
versions of the subscribed channels. Every time you run
<command>
nix-channel --update
</command>
, a new channel generation
(that is, a symlink to the channel Nix expressions in the Nix store)
is created. This enables
<command>
nix-channel --rollback
</command>
to revert to previous versions.
</para></listitem>
</varlistentry>
<varlistentry><term><filename>
~/.nix-defexpr/channels
</filename></term>
<listitem><para>
This is a symlink to
<filename>
/nix/var/nix/profiles/
<replaceable>
username
</replaceable>
/channels
</filename>
. It
ensures that
<command>
nix-env
</command>
can find your channels. In
a multi-user installation, you may also have
<filename>
~/.nix-defexpr/channels_root
</filename>
, which links to
the channels of the root user.
</para></listitem>
</varlistentry>
</variablelist>
</refsection>
</refentry>
This diff is collapsed.
Click to expand it.
scripts/nix-channel.in
+
14
−
0
View file @
2c1711ae
...
...
@@ -199,6 +199,20 @@ while (scalar @ARGV) {
last;
}
elsif ($arg eq "--rollback") {
die "$0: ‘--rollback’ has at most one argument\n" if scalar @ARGV > 1;
my $generation = shift @ARGV;
my @args = ("$Nix::Config::binDir/nix-env", "--profile", $profile);
if (defined $generation) {
die "invalid channel generation number ‘$generation’" unless $generation =~ /^[0-9]+$/;
push @args, "--switch-generation", $generation;
} else {
push @args, "--rollback";
}
system(@args) == 0 or exit 1;
last;
}
elsif ($arg eq "--help") {
exec "man nix-channel" or die;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment