Using Nix: Difference between revisions

From Alliance Doc
Jump to navigation Jump to search
(Note that the failed thread affinity call warning message can be ignored)
m (Page seems stable. Drop draft.)
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
Nix is a package manager system that allows users to manage their own persistent software environment.  At the moment it is only available on graham.
= Overview =


* Users can build, install, upgrade, downgrade, and remove packages from their environment without root privileges and without affecting other users.
[https://nixos.org/nix/ Nix] is a software building and composition system that allows users to manage their own persistent software environments. It is only available on SHARCNET systems (i.e., graham and legacy).
* Operations either succeed and create a new environment or fail leaving the previous environment in place (operations are atomic).
* Previous environments can be switched back to at any point.
* Users can add their own packages and share them with other users.


The default Nix package set includes a huge selection (over 10,000) of recent versions of many packages.
* Supports one-off, per-project, and per-user usage of compositions
* Compositions can be built, installed, upgraded, downgraded, and removed as a user
* Operations either succeed or fail leaving everything intact (operations are atomic).
* Extremely easy to add and share compositions
 
Currently nix is building software in a generic manner (e.g., without AVX2 or AVX512 vector instructions support), so module loaded software should be preferred for longer running simulations when it exists.


'''NOTE:''' The message <code>failed to lock thread to CPU XX</code> is a harmless warning that can be ignored.
'''NOTE:''' The message <code>failed to lock thread to CPU XX</code> is a harmless warning that can be ignored.


== Enabling and disabling the Nix environment ==
== Enabling and disabling the nix environment ==


The user's current Nix environment is enabled by loading the nix module. This creates some ''.nix*'' files and sets some environment variables.
The user’s current nix environment is enabled by loading the nix module. This creates some ''.nix*'' files and sets some environment variables.


{{Commands|prompt=[name@cluster:~]
<source lang="bash">[name@cluster:~]$ module load nix</source>
|module load nix
It is disabled by unloading the nix module. This unsets the environment variables but leaves the ''.nix*'' files alone.
}}


It is disabled by unloading the nix module. This unsets the environment variables but leaves the ''.nix*'' files alone.
<source lang="bash">[name@cluster:~]$ module unload nix</source>
== Completely resetting the nix environment ==
 
Most per-user operations can be undone with the <code>--rollback</code> option (i.e., <code>nix-env --rollback</code> or <code>nix-channel --rollback</code>). Sometimes it is useful to entirely reset nix though. This is done by unloading the module, erasing all user related nix files, and then reloading the module file.
 
<source lang="bash">[name@cluster:~]$ module unload nix
[name@cluster:~]$ rm -fr ~/.nix-profile ~/.nix-defexpr ~/.nix-channels ~/.config/nixpkgs
[name@cluster:~]$ rm -fr /nix/var/nix/profiles/per-user/$USER /nix/var/nix/gcroots/per-user/$USER
[name@cluster:~]$ module load nix</source>
= Existing compositions =
 
The <code>nix search</code> command can be used to locate already available compositions
 
<source lang="bash">[user@cluster:~]$ nix search git
...
* nixpkgs.git (git-minimal-2.19.3)
  Distributed version control system
...</source>
Pro tips include
 
* you need to specify <code>-u</code> after upgrading your channel (this will take awhile)
* the search string is actually a regular expression and multiple ones are ANDed together
 
Often our usage of a composition is either a one-off, a per-project, or an all the time situations. Nix supports all three of these cases.
 
== One offs ==
 
If you just want to use a composition once, the easiest was is to use the <code>nix run</code> command. This command will start a shell in which <code>PATH</code> has been extended to include the specified composition
 
<source lang="bash">[user@cluster:~]$ nix run nixpkg.git
[user@cluster:~]$ git
[user@cluster:~]$ exit</source>
Note that this does not protect the composition from being garbage collected overnight (e.g., the composition is only guaranteed to be around temporarily for your use until sometime in the wee-morning hours). Pro tips include
 
* you can specify more than one composition in the same <code>nix run</code> command
* you can specify a command instead of a shell with <code>-c &lt;cmd&gt; &lt;args&gt; ...</code>
 
== Per-project ==
 
If you want to use a program for a specific project, the easiest way is with the <code>nix build</code> command. This command will create a symbolic link (by default named <code>result</code>) from which you can access the programs ''bin'' directory to run it.
 
<source lang="bash">[user@cluster:~]$ nix build nixpkgs.git
[user@cluster:~]$ ./result/bin/git</source>
Note that (currently) the composition will only be protected from overnight garbage collection if you output the symlink into your ''home'' directory and do not rename or move it. Pro tips include
 
* you can specify the output symlink name with the <code>-o &lt;name&gt;</code> option
* add the ''bin'' directory to your <code>PATH</code> to not have to type it in every time


{{Commands|prompt=[name@cluster:~]
== Per-user ==
|module unload nix
}}


== Completely reseting the Nix environment ==
Loading the <code>nix</code> module adds the per-user common ''~/.nix-profile/bin'' directory to your <code>PATH</code>. You can add and remove compositions from this directory with the <code>nix-env</code> command


Most operations can be undone with the <code>--rollback</code> option (i.e.,  <code>nix-env --rollback</code> or  <code>nix-channel --rollback</code>). Sometimes it is useful to entirely reset nix though. This is done by unloading the module, erasing all user related nix files, and then reloading the module file.
<source lang="bash">[user@cluster:~]$ nix-env --install --attr nixpkgs.git
[user@cluster:~]$ nix-env --query
git-minimal-2.19.3</source>
<source lang="bash">[user@cluster:~]$ nix-env --uninstall git-minimal
uninstalling 'git-minimal-2.19.3'
[user@cluster:~]$ nix-env --query</source>
Each command actually creates a new version, so all prior versions remain and can be used


{{Commands|prompt=[name@cluster:~]
<source lang="bash">[user@cluster:~]$ nix-env --list-generations
|module unload nix
  1  2020-07-29 13:10:03
|rm -fr ~/.nix-profile ~/.nix-defexpr ~/.nix-channels ~/.config/nixpkgs
  2  2020-07-29 13:11:52  (current)
|rm -fr /nix/var/nix/profiles/per-user/$USER /nix/var/nix/gcroots/per-user/$USER
[user@cluster:~]$ nix-env --switch-generation 1
|module load nix
[user@cluster:~]$ nix-env --query
}}
git-minimal-2.19.3
[user@cluster:~]$ nix-env --switch-generation 2
[user@cluster:~]$ nix-env --query</source>
Pro tips include


= Installing and removing packages =
* <code>nix-env --rollback</code> moves up one generation
* <code>nix-env --delete-generations &lt;time&gt;</code> deletes environments older than <code>&lt;time&gt;</code> (e.g., <code>30d</code>)
* see our [[Using Nix: nix-env|nix-env page]] for a much more in-depth discussion of using <code>nix-env</code>


The <code>nix-env</code> command is used to setup your Nix environment.
= Creating compositions =


== What do I have installed and what can I install ==
Often we require our own unique composition. A basic example would be to bundle all the binaries from multiple existing compositions in a common ''bin'' directory (e.g., <code>make</code>, <code>gcc</code>, and <code>ld</code> to build a simple C program). A more complex example would be to bundle python with a set of python libraries by wrapping the python executables with shell scripts to set <code>PYTHON_PATH</code> for the python libraries before running the real python binaries.


Lets first see what we currently have installed.
All of these have a common format. You write a nix expression in a <code>.nix</code> file that composes together existing compositions and then you tell the above commands to use that with the <code>-f &lt;nix file&gt;</code> option. For example, say the file <code>python.nix</code> has an expression for a python environment in it, you can create a per-project ''bin'' directory with


{{Commands|prompt=[name@cluster:~]
<source lang="bash">[user@cluster:~]$ nix build -f python.nix -o python
|nix-env --query
[user@cluster:~]$ ./python/bin/python</source>
}}
The nix expression you put in the file generally


Now let's see what is available. We request the attribute paths (unambiguous way of specifying a package) and the descriptions too (cursor to the right to see them). This takes a bit of time as it visits a lot of small files. Especially over NFS it can be a good idea to pipe it to a file and then grep that in the future.
* does <code>with import &lt;nixpkgs&gt; {}</code> to bring the set of nixpkgs into scope
* calls an existing composition functions with a list of space-separated components to include


{{Commands|prompt=[name@cluster:~]
The template for doing the second these follows below as it differs slightly across the various eco-systems.
|nix-env --query --available --attr-path --description
}}


== Installing packages ==
A pro tip is


Let's say that we need a newer version of git than provided by default. First lets check what our OS comes with.
* there are many [https://nixos.org/nixpkgs/manual/#chap-language-support languages and framework supported] but only a few described here, send us an email if you would like a missing supported one added here


{{Commands|prompt=[name@cluster:~]
== Generic ==
|git --version
|which git
}}


Let's tell Nix to install its version in our environment.
Nixpkgs provides a <code>buildEnv</code> function that does a basic composition of compositions (by combining their ''bin'', ''lib'', etc. directories). The list of packages are the same as used before minus the leading <code>nixpkgs</code> prefix as it was imported (e.g., <code>git</code> instead of <code>nixpkgs.git</code>).


{{Commands|prompt=[name@cluster:~]
<source lang="nix">with import <nixpkgs> {};
|nix-env --install --attr nixpkgs.git
buildEnv {
|nix-env --query
  name = "my environment";
}}
  paths = [
    ... list of compositions ...
  ];
}</source>
== Python ==


Let's checkout what we have now (it may be necessary to tell bash to to forget remembered executable locations with <code>hash -r</code> so it notices the new one).
Nixpkgs provides the following python related attributes


{{Commands|prompt=[name@cluster:~]
* <code>python&lt;major&gt;&lt;minor&gt;</code> - a composition providing the given python
|git --version
* <code>python&lt;major&gt;&lt;minor&gt;.pkgs</code> - the set of python compositions using the given python
|which git
* <code>python&lt;major&gt;&lt;minor&gt;.withPackages</code> - wraps python with <code>PYTHON_PATH</code> set to a given set of python packages
}}


== Removing packages ==
We can use the former directly to use the programs provided by python compositions


For completeness, lets add in the other usual version-control suspects.
<source lang="bash">[user@cluster:~]$ nix run python36.pkgs.spambayes
[user@cluster:~]$ sb_filter.py --help
[user@cluster:~]$ exit</source>
and the later in a <code>.nix</code> file to create a python composition that enables a given set of libraries (e.g., a <code>python</code> command we can run and access the given set of python packages from)


{{Commands|prompt=[name@cluster:~]
<source lang="nix">with import <nixpkgs> { };
|nix-env --install --attr nixpkgs.subversion nixpkgs.mercurial
python.withPackages (packages:
|nix-env --query
  with packages; [
}}
    ... list of python packages ...
  ]
)</source>
Some pro tips are


Actually, we probably don't really want subversion any more. Let's remove that.
* the aliases <code>python</code> and <code>python&lt;major&gt;</code> given default <code>python&lt;major&gt;&lt;minor&gt;</code> versions
* the aliases <code>pythonPackages&lt;major&gt;&lt;minor&gt;</code> are short for <code>python&lt;major&gt;&lt;minor&gt;.pkgs</code> (including default version variants)
* the function <code>python&lt;major&gt;&lt;minor&gt;.pkgs.buildPythonPackage</code> can be used to build your own python packages


{{Commands|prompt=[name@cluster:~]
== R ==
|nix-env --uninstall subversion
|nix-env --query
}}


= Environments =
Nixpkgs provides the following R related attributes


Nix keeps referring to user environments. Each time we install or remove packages we create a new environment based off of the previous environment.
* <code>R</code> - a composition providing R
* <code>rstudio</code> - a composition providing RStudio
* <code>rPackages</code> - the set of R packages
* <code>rWrapper</code> - a composition that wraps R with <code>R_LIBS</code> set to a minimal set of R packages
* <code>rstudioWrapper</code> - a composition that wrapped RStudio with <code>R_LIBS</code> set to a minimal set of R packages


== Switching between previous environments ==
We can use <code>rPackages</code> directly to examine the content of R packages


This means the previous environments still exist and we can switch back to them at any point. Let's say we changed our mind and want subversion back. It's trivial to restore the previous environment.
<source lang="bash">[user@cluster:~]$ nix build rPackages.exams -o exams
[user@cluster:~]$ cat exams/library/exams/NEWS
[user@cluster:~]$ exit</source>
and the latter two can be overridden in a <code>.nix</code> file to create R and RStudio wrappers to create a composition enabling a given set of R libraries (e.g., a <code>R</code> or <code>rstudio</code> command we can run and access the given set of R packages from)


{{Commands|prompt=[name@cluster:~]
<source lang="nix">with import <nixpkgs> { };
|nix-env --rollback
rWrapper.override {
|nix-env --query
  packages = with rPackages; [
}}
    ... list of R packages ...
  ];
}</source>
A pro tips is


Of course we may want to do more than just move to the previous environment. We can get a list of all our environments so far and then jump directly to whatever one we want. Let's undo the rollback.
* the function <code>rPackages.buildRPackage</code> can be used to build your own R packages


{{Commands|prompt=[name@cluster:~]
== Haskell ==
|nix-env --list-generations
|nix-env --switch-generation 4
|nix-env --query
}}


== Operations are atomic ==
Nixpkgs provides the following haskell related attributes


Due to the atomic property of Nix environments, we can't be left halfway through installing/updating packages. They either succeed and create us a new environment or leave us with the previous one intact.
* <code>haskell.compiler.ghc&lt;major&gt;&lt;minor&gt;&lt;patch&gt;</code> - composition providing the given ghc
* <code>haskell.packages.ghc&lt;major&gt;&lt;minor&gt;&lt;patch&gt;</code> - the set of haskell packages compiled by the given ghc
* <code>haskell.packages.ghc&lt;major&gt;&lt;minor&gt;&lt;patch&gt;.ghc.withPackages</code> - composition wrapping ghc to enable the given packages
* <code>haskell.packages.ghc&lt;major&gt;&lt;minor&gt;&lt;patch&gt;.ghc.withHoogle</code> - composition wrapping ghc to enable the given packages with hoogle and documentation indices


Let's go back to the start when we just had Nix itself and install the one true GNU distributed version control system tla. Don't let it complete though. Hit it with <code>CTRL+c</code> partway through.
We can use the first directly to use programs provided by haskell packages


{{Commands|prompt=[name@cluster:~]
<source lang="bash">[user@cluster:~]$ nix run haskell.packages.ghc864.pandoc
|nix-env --switch-generation 1
[user@cluster:~]$ pandoc --help</source>
|nix-env --install --attr nixpkgs.tla
and the last two in a <code>.nix</code> file create a ghc environment to enable a given set of haskell package (e.g., a <code>ghci</code> we can run and access the given set of packages from)
CTRL+c
}}


Nothing bad happens. The operation didn't complete so it has no effect on the environment whatsoever.
<pre>with import &lt;nixpkgs&gt; { };
haskell.packages.ghc864.ghc.withPackages (packages:
  with packages; [
    ... list of Haskell packages ...
  ];
}</pre>
Some pro tips are


{{Commands|prompt=[name@cluster:~]
* the alias <code>haskellPackages</code> gives a default <code>haskell.packages.ghc&lt;major&gt;&lt;minor&gt;&lt;patch&gt;</code>
|nix-env --query
* the attributes in <code>haskell.lib</code> contains a variety of useful attributes for tweaking haskell packages (e.g., enabling profiling, etc.)
|nix-env --list-generations
* the upstream maintainer has a useful [https://www.youtube.com/watch?v=KLhkAEk8I20 youtube video] on how to fix broken haskell packages
}}


== Nix only does things once ==
== Emacs ==


The install and remove commands take the current environment and create a new environment with the changes. This works regardless of which environment we are currently in. Let's create a new environment from our original environment by just adding git and mercurial.
Nixpkgs provides the following emacs related attributes (append a <code>Ng</code> suffix for older versions of nixpkgs, e.g., <code>emacs25Ng</code> and <code>emacs25PackagesNg</code>)


{{Commands|prompt=[name@cluster:~]
* <code>emacs&lt;major&gt;&lt;minor&gt;</code> - a composition providing the given emacs editor
|nix-env --list-generations
* <code>emacs&lt;major&gt;&lt;minor&gt;Packages</code> - the set of emacs packages for the given emacs editor
|nix-env --install nixpkgs.git nixpkgs.mercurial
* <code>emacs&lt;major&gt;&lt;minor&gt;Packages.emacsWithPackages</code> - composition wrapping emacs to enable the given packages
|nix-env --list-generations
}}


Notice how much much faster it was to install git and mercurial the second time? That is because the software already existed in the local Nix store from the previous installs so Nix just reused it.
We can use the second directly examine the content of packages


== Garbage collection ==
<source lang="bash">[user@cluster:~]$ nix build nixpkgs.emacs25Packages.magit -o magit
[user@cluster:~]$ cat magit/share/emacs/site-lisp/elpa/magit*/AUTHORS.md
[user@cluster:~]$ exit</source>
and the last one in a <code>.nix</code> file create a composition giving emacs with the given set of packages enabled


Nix periodically goes through and removes any software not accessible from any existing environments. This means we have to explicitly delete environments we don't want anymore so Nix is able to reclaim the space. We can delete specific environments or any sufficiently old.
<pre>with import &lt;nixpkgs&gt; { };
emacs25Packages.emacsWithPackages (packages:
  with packages; [
    ... list of emacs packages ...
  ];
}</pre>
Some pro tips are


{{Commands|prompt=[name@cluster:~]
* the aliases <code>emacs</code> and <code>emacsPackages</code> give a default <code>emacs&lt;major&gt;&lt;minor&gt;</code> and <code>emacsPackages&lt;major&gt;&lt;minor&gt;</code> version
|nix-env --delete-generations 30d
* the alias <code>emacs&lt;major&gt;&lt;minor&gt;WithPackages</code> are short for <code>emacs&lt;major&gt;&lt;minor&gt;Packages.emacsWithPackages</code> (including default version variants)
}}


[[Category:Nix]]
[[Category:Software]]

Latest revision as of 18:23, 25 July 2022

Overview

Nix is a software building and composition system that allows users to manage their own persistent software environments. It is only available on SHARCNET systems (i.e., graham and legacy).

  • Supports one-off, per-project, and per-user usage of compositions
  • Compositions can be built, installed, upgraded, downgraded, and removed as a user
  • Operations either succeed or fail leaving everything intact (operations are atomic).
  • Extremely easy to add and share compositions

Currently nix is building software in a generic manner (e.g., without AVX2 or AVX512 vector instructions support), so module loaded software should be preferred for longer running simulations when it exists.

NOTE: The message failed to lock thread to CPU XX is a harmless warning that can be ignored.

Enabling and disabling the nix environment

The user’s current nix environment is enabled by loading the nix module. This creates some .nix* files and sets some environment variables.

[name@cluster:~]$ module load nix

It is disabled by unloading the nix module. This unsets the environment variables but leaves the .nix* files alone.

[name@cluster:~]$ module unload nix

Completely resetting the nix environment

Most per-user operations can be undone with the --rollback option (i.e., nix-env --rollback or nix-channel --rollback). Sometimes it is useful to entirely reset nix though. This is done by unloading the module, erasing all user related nix files, and then reloading the module file.

[name@cluster:~]$ module unload nix
[name@cluster:~]$ rm -fr ~/.nix-profile ~/.nix-defexpr ~/.nix-channels ~/.config/nixpkgs
[name@cluster:~]$ rm -fr /nix/var/nix/profiles/per-user/$USER /nix/var/nix/gcroots/per-user/$USER
[name@cluster:~]$ module load nix

Existing compositions

The nix search command can be used to locate already available compositions

[user@cluster:~]$ nix search git
...
* nixpkgs.git (git-minimal-2.19.3)
  Distributed version control system
...

Pro tips include

  • you need to specify -u after upgrading your channel (this will take awhile)
  • the search string is actually a regular expression and multiple ones are ANDed together

Often our usage of a composition is either a one-off, a per-project, or an all the time situations. Nix supports all three of these cases.

One offs

If you just want to use a composition once, the easiest was is to use the nix run command. This command will start a shell in which PATH has been extended to include the specified composition

[user@cluster:~]$ nix run nixpkg.git
[user@cluster:~]$ git
[user@cluster:~]$ exit

Note that this does not protect the composition from being garbage collected overnight (e.g., the composition is only guaranteed to be around temporarily for your use until sometime in the wee-morning hours). Pro tips include

  • you can specify more than one composition in the same nix run command
  • you can specify a command instead of a shell with -c <cmd> <args> ...

Per-project

If you want to use a program for a specific project, the easiest way is with the nix build command. This command will create a symbolic link (by default named result) from which you can access the programs bin directory to run it.

[user@cluster:~]$ nix build nixpkgs.git
[user@cluster:~]$ ./result/bin/git

Note that (currently) the composition will only be protected from overnight garbage collection if you output the symlink into your home directory and do not rename or move it. Pro tips include

  • you can specify the output symlink name with the -o <name> option
  • add the bin directory to your PATH to not have to type it in every time

Per-user

Loading the nix module adds the per-user common ~/.nix-profile/bin directory to your PATH. You can add and remove compositions from this directory with the nix-env command

[user@cluster:~]$ nix-env --install --attr nixpkgs.git
[user@cluster:~]$ nix-env --query
git-minimal-2.19.3
[user@cluster:~]$ nix-env --uninstall git-minimal
uninstalling 'git-minimal-2.19.3'
[user@cluster:~]$ nix-env --query

Each command actually creates a new version, so all prior versions remain and can be used

[user@cluster:~]$ nix-env --list-generations
   1   2020-07-29 13:10:03
   2   2020-07-29 13:11:52   (current)
[user@cluster:~]$ nix-env --switch-generation 1
[user@cluster:~]$ nix-env --query
git-minimal-2.19.3
[user@cluster:~]$ nix-env --switch-generation 2
[user@cluster:~]$ nix-env --query

Pro tips include

  • nix-env --rollback moves up one generation
  • nix-env --delete-generations <time> deletes environments older than <time> (e.g., 30d)
  • see our nix-env page for a much more in-depth discussion of using nix-env

Creating compositions

Often we require our own unique composition. A basic example would be to bundle all the binaries from multiple existing compositions in a common bin directory (e.g., make, gcc, and ld to build a simple C program). A more complex example would be to bundle python with a set of python libraries by wrapping the python executables with shell scripts to set PYTHON_PATH for the python libraries before running the real python binaries.

All of these have a common format. You write a nix expression in a .nix file that composes together existing compositions and then you tell the above commands to use that with the -f <nix file> option. For example, say the file python.nix has an expression for a python environment in it, you can create a per-project bin directory with

[user@cluster:~]$ nix build -f python.nix -o python
[user@cluster:~]$ ./python/bin/python

The nix expression you put in the file generally

  • does with import <nixpkgs> {} to bring the set of nixpkgs into scope
  • calls an existing composition functions with a list of space-separated components to include

The template for doing the second these follows below as it differs slightly across the various eco-systems.

A pro tip is

Generic

Nixpkgs provides a buildEnv function that does a basic composition of compositions (by combining their bin, lib, etc. directories). The list of packages are the same as used before minus the leading nixpkgs prefix as it was imported (e.g., git instead of nixpkgs.git).

with import <nixpkgs> {};
buildEnv {
  name = "my environment";
  paths = [
    ... list of compositions ...
  ];
}

Python

Nixpkgs provides the following python related attributes

  • python<major><minor> - a composition providing the given python
  • python<major><minor>.pkgs - the set of python compositions using the given python
  • python<major><minor>.withPackages - wraps python with PYTHON_PATH set to a given set of python packages

We can use the former directly to use the programs provided by python compositions

[user@cluster:~]$ nix run python36.pkgs.spambayes
[user@cluster:~]$ sb_filter.py --help
[user@cluster:~]$ exit

and the later in a .nix file to create a python composition that enables a given set of libraries (e.g., a python command we can run and access the given set of python packages from)

with import <nixpkgs> { };
python.withPackages (packages:
  with packages; [
    ... list of python packages ...
  ]
)

Some pro tips are

  • the aliases python and python<major> given default python<major><minor> versions
  • the aliases pythonPackages<major><minor> are short for python<major><minor>.pkgs (including default version variants)
  • the function python<major><minor>.pkgs.buildPythonPackage can be used to build your own python packages

R

Nixpkgs provides the following R related attributes

  • R - a composition providing R
  • rstudio - a composition providing RStudio
  • rPackages - the set of R packages
  • rWrapper - a composition that wraps R with R_LIBS set to a minimal set of R packages
  • rstudioWrapper - a composition that wrapped RStudio with R_LIBS set to a minimal set of R packages

We can use rPackages directly to examine the content of R packages

[user@cluster:~]$ nix build rPackages.exams -o exams
[user@cluster:~]$ cat exams/library/exams/NEWS
[user@cluster:~]$ exit

and the latter two can be overridden in a .nix file to create R and RStudio wrappers to create a composition enabling a given set of R libraries (e.g., a R or rstudio command we can run and access the given set of R packages from)

with import <nixpkgs> { };
rWrapper.override {
  packages = with rPackages; [
    ... list of R packages ...
  ];
}

A pro tips is

  • the function rPackages.buildRPackage can be used to build your own R packages

Haskell

Nixpkgs provides the following haskell related attributes

  • haskell.compiler.ghc<major><minor><patch> - composition providing the given ghc
  • haskell.packages.ghc<major><minor><patch> - the set of haskell packages compiled by the given ghc
  • haskell.packages.ghc<major><minor><patch>.ghc.withPackages - composition wrapping ghc to enable the given packages
  • haskell.packages.ghc<major><minor><patch>.ghc.withHoogle - composition wrapping ghc to enable the given packages with hoogle and documentation indices

We can use the first directly to use programs provided by haskell packages

[user@cluster:~]$ nix run haskell.packages.ghc864.pandoc
[user@cluster:~]$ pandoc --help

and the last two in a .nix file create a ghc environment to enable a given set of haskell package (e.g., a ghci we can run and access the given set of packages from)

with import <nixpkgs> { };
haskell.packages.ghc864.ghc.withPackages (packages:
  with packages; [
    ... list of Haskell packages ...
  ];
}

Some pro tips are

  • the alias haskellPackages gives a default haskell.packages.ghc<major><minor><patch>
  • the attributes in haskell.lib contains a variety of useful attributes for tweaking haskell packages (e.g., enabling profiling, etc.)
  • the upstream maintainer has a useful youtube video on how to fix broken haskell packages

Emacs

Nixpkgs provides the following emacs related attributes (append a Ng suffix for older versions of nixpkgs, e.g., emacs25Ng and emacs25PackagesNg)

  • emacs<major><minor> - a composition providing the given emacs editor
  • emacs<major><minor>Packages - the set of emacs packages for the given emacs editor
  • emacs<major><minor>Packages.emacsWithPackages - composition wrapping emacs to enable the given packages

We can use the second directly examine the content of packages

[user@cluster:~]$ nix build nixpkgs.emacs25Packages.magit -o magit
[user@cluster:~]$ cat magit/share/emacs/site-lisp/elpa/magit*/AUTHORS.md
[user@cluster:~]$ exit

and the last one in a .nix file create a composition giving emacs with the given set of packages enabled

with import <nixpkgs> { };
emacs25Packages.emacsWithPackages (packages:
  with packages; [
    ... list of emacs packages ...
  ];
}

Some pro tips are

  • the aliases emacs and emacsPackages give a default emacs<major><minor> and emacsPackages<major><minor> version
  • the alias emacs<major><minor>WithPackages are short for emacs<major><minor>Packages.emacsWithPackages (including default version variants)