1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00

Merge pull request #24 from domenkozar/towards-reproducability-pinning-nixpkgs

Tutorial on pinning nixpkgs
This commit is contained in:
Domen Kožar 2020-06-10 11:01:50 +02:00 committed by GitHub
commit dbb86c39aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 82 additions and 3 deletions

View file

@ -6,7 +6,7 @@ Welcome to nix.dev
.. topic:: Introduction
Welcome to documentation for developers wanting to get things done with `Nix <https://nixos.org/>`_.
Welcome to the documentation for developers wanting to get things done using `the Nix ecosystem <https://nixos.org/>`_.
Using Nix ecosystem you get:

View file

@ -113,7 +113,7 @@ We create ad hoc environment with ``$PYTHONPATH`` set and ``python`` available w
``-p`` argument accepts Nix expression, but going into the Nix language is out of scope of this tutorial.
Towards reproducability
Towards reproducibility
-----------------------
If you handed over these commands to another developer, they might get different results.
@ -164,7 +164,7 @@ This is essentially the same example as in previous section, but this time decla
Going forward
-------------
.. - Where are these packages coming from? TODO: channels and pinning nixpkgs
- :ref:`pinning-nixpkgs`
.. TODO: reproducible developer environments

View file

@ -6,6 +6,7 @@ Tutorials
install-nix.rst
ad-hoc-developer-environments.rst
towards-reproducibility-pinning-nixpkgs.rst
declarative-and-reproducible-developer-environments.rst
dev-environment.rst
contributing.rst

View file

@ -0,0 +1,78 @@
.. _pinning-nixpkgs:
Towards reproducibility: Pinning nixpkgs
========================================
In Nix snippets around the internet you'll often encounter the following:
.. code:: nix
{ pkgs ? import <nixpkgs> {}
}:
...
To quickly demonstrate and get a working Nix expression by importing Nix packages.
But it doesn't make Nix expression reproducible. Two developers on different machines
are likely to have `<nixpkgs>` point to different revisions which will lead to getting different results.
.. note::
``<nixpkgs>`` is syntax for looking up from shell environment variable ``$NIX_PATH``.
It is always set at the installation time to point to ``nixpkgs-unstable`` channel.
Channels are a way of distributing Nix software, but they are being phased out.
So even though they are still used by default, it's recommended to avoid channels
and ``<nixpkgs>`` by always setting ``NIX_PATH=`` to be empty.
Pinning with URLs inside Nix expression
---------------------------------------
The simplest way to pin nixpkgs is to fetch them as a tarball specified via git commit:
.. code:: nix
{ pkgs ? import (fetchTarball https://github.com/NixOS/nixpkgs/archive/3590f02e7d5760e52072c1a729ee2250b5560746.tar.gz) {};
}:
...
Picking the commit is easiest done via `status.nixos.org <https://status.nixos.org/>`_,
which lists all the releases and their latest commit that passed all the tests.
It's recommended to either follow latest stable NixOS release such as ``nixos-20.03``
or unstable via ``nixos-unstable``.
Dependency management with niv
------------------------------
If you'd like a bit more automation around bumping dependencies such as nixpkgs,
``niv`` is made for exactly that::
$ nix-shell -p niv --run "niv init"
This command will generate ``nix/sources.json`` with information how and where
dependencies are fetched and ``nix/sources.nix`` that glues them together in Nix.
By default ``niv`` will configure the latest stable NixOS release.
You can use it as:
.. code:: nix
{ sources ? import ./sources.nix
, pkgs ? import sources.nixpkgs {}
}:
...
To update all dependencies::
$ nix-shell -p niv --run "niv update"
.. Reference: nix.nixPath = [ ("nixpkgs=" + toString pkgs.path) ];