doc: update Nix code snippets format

Command: `mdcr --config doc/tests/mdcr-config.toml doc/`
This commit is contained in:
Pol Dellaiera 2025-04-11 09:36:54 +02:00 committed by Valentin Gagarin
parent 5d979e79ce
commit bcea0cf344
86 changed files with 2485 additions and 1478 deletions

View file

@ -42,9 +42,15 @@ This function does not support `__structuredAttrs`, but does support `passAsFile
devShellTools.unstructuredDerivationInputEnv { devShellTools.unstructuredDerivationInputEnv {
drvAttrs = { drvAttrs = {
name = "foo"; name = "foo";
buildInputs = [ hello figlet ]; buildInputs = [
hello
figlet
];
builder = bash; builder = bash;
args = [ "-c" "${./builder.sh}" ]; args = [
"-c"
"${./builder.sh}"
];
}; };
} }
# => { # => {
@ -69,7 +75,10 @@ Takes the relevant parts of a derivation and returns a set of environment variab
let let
pkg = hello; pkg = hello;
in in
devShellTools.derivationOutputEnv { outputList = pkg.outputs; outputMap = pkg; } devShellTools.derivationOutputEnv {
outputList = pkg.outputs;
outputMap = pkg;
}
``` ```
::: :::

View file

@ -491,7 +491,11 @@ It might be useful to manipulate the content downloaded by `fetchurl` directly i
In this example, we'll adapt [](#ex-fetchers-fetchurl-nixpkgs-version) to append the result of running the `hello` package to the contents we download, purely to illustrate how to manipulate the content. In this example, we'll adapt [](#ex-fetchers-fetchurl-nixpkgs-version) to append the result of running the `hello` package to the contents we download, purely to illustrate how to manipulate the content.
```nix ```nix
{ fetchurl, hello, lib }: {
fetchurl,
hello,
lib,
}:
fetchurl { fetchurl {
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/23.11/.version"; url = "https://raw.githubusercontent.com/NixOS/nixpkgs/23.11/.version";
@ -714,9 +718,10 @@ A wrapper around `fetchpatch`, which takes:
Here is an example of `fetchDebianPatch` in action: Here is an example of `fetchDebianPatch` in action:
```nix ```nix
{ lib {
, fetchDebianPatch lib,
, buildPythonPackage fetchDebianPatch,
buildPythonPackage,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -914,7 +919,9 @@ It produces packages that cannot be built automatically.
{ fetchtorrent }: { fetchtorrent }:
fetchtorrent { fetchtorrent {
config = { peer-limit-global = 100; }; config = {
peer-limit-global = 100;
};
url = "magnet:?xt=urn:btih:dd8255ecdc7ca55fb0bbf81323d87062db1f6d1c"; url = "magnet:?xt=urn:btih:dd8255ecdc7ca55fb0bbf81323d87062db1f6d1c";
hash = ""; hash = "";
} }

View file

@ -66,7 +66,8 @@ let
url = "https://github.com/irccloud/irccloud-desktop/releases/download/v${version}/IRCCloud-${version}-linux-x86_64.AppImage"; url = "https://github.com/irccloud/irccloud-desktop/releases/download/v${version}/IRCCloud-${version}-linux-x86_64.AppImage";
hash = "sha256-/hMPvYdnVB1XjKgU2v47HnVvW4+uC3rhRjbucqin4iI="; hash = "sha256-/hMPvYdnVB1XjKgU2v47HnVvW4+uC3rhRjbucqin4iI=";
}; };
in appimageTools.wrapType2 { in
appimageTools.wrapType2 {
inherit pname version src; inherit pname version src;
extraPkgs = pkgs: [ pkgs.at-spi2-core ]; extraPkgs = pkgs: [ pkgs.at-spi2-core ];
} }
@ -106,7 +107,8 @@ let
appimageContents = appimageTools.extract { appimageContents = appimageTools.extract {
inherit pname version src; inherit pname version src;
}; };
in appimageTools.wrapType2 { in
appimageTools.wrapType2 {
inherit pname version src; inherit pname version src;
extraPkgs = pkgs: [ pkgs.at-spi2-core ]; extraPkgs = pkgs: [ pkgs.at-spi2-core ];
@ -150,7 +152,8 @@ let
substituteInPlace $out/irccloud.desktop --replace-fail 'Exec=AppRun' 'Exec=${pname}' substituteInPlace $out/irccloud.desktop --replace-fail 'Exec=AppRun' 'Exec=${pname}'
''; '';
}; };
in appimageTools.wrapType2 { in
appimageTools.wrapType2 {
inherit pname version src; inherit pname version src;
extraPkgs = pkgs: [ pkgs.at-spi2-core ]; extraPkgs = pkgs: [ pkgs.at-spi2-core ];

View file

@ -35,7 +35,7 @@ The following derivation will construct a flat-file binary cache containing the
```nix ```nix
{ mkBinaryCache, hello }: { mkBinaryCache, hello }:
mkBinaryCache { mkBinaryCache {
rootPaths = [hello]; rootPaths = [ hello ];
} }
``` ```

View file

@ -235,7 +235,11 @@ The following package builds a Docker image that runs the `redis-server` executa
The Docker image will have name `redis` and tag `latest`. The Docker image will have name `redis` and tag `latest`.
```nix ```nix
{ dockerTools, buildEnv, redis }: {
dockerTools,
buildEnv,
redis,
}:
dockerTools.buildImage { dockerTools.buildImage {
name = "redis"; name = "redis";
tag = "latest"; tag = "latest";
@ -253,7 +257,9 @@ dockerTools.buildImage {
config = { config = {
Cmd = [ "/bin/redis-server" ]; Cmd = [ "/bin/redis-server" ];
WorkingDir = "/data"; WorkingDir = "/data";
Volumes = { "/data" = { }; }; Volumes = {
"/data" = { };
};
}; };
} }
``` ```
@ -286,7 +292,11 @@ It uses `runAsRoot` to create a directory and a file inside the image.
This works the same as [](#ex-dockerTools-buildImage-extraCommands), but uses `runAsRoot` instead of `extraCommands`. This works the same as [](#ex-dockerTools-buildImage-extraCommands), but uses `runAsRoot` instead of `extraCommands`.
```nix ```nix
{ dockerTools, buildEnv, hello }: {
dockerTools,
buildEnv,
hello,
}:
dockerTools.buildImage { dockerTools.buildImage {
name = "hello"; name = "hello";
tag = "latest"; tag = "latest";
@ -320,7 +330,11 @@ This works the same as [](#ex-dockerTools-buildImage-runAsRoot), but uses `extra
Note that with `extraCommands`, we can't directly reference `/` and must create files and directories as if we were already on `/`. Note that with `extraCommands`, we can't directly reference `/` and must create files and directories as if we were already on `/`.
```nix ```nix
{ dockerTools, buildEnv, hello }: {
dockerTools,
buildEnv,
hello,
}:
dockerTools.buildImage { dockerTools.buildImage {
name = "hello"; name = "hello";
tag = "latest"; tag = "latest";
@ -350,7 +364,11 @@ dockerTools.buildImage {
Note that using a value of `"now"` in the `created` attribute will break reproducibility. Note that using a value of `"now"` in the `created` attribute will break reproducibility.
```nix ```nix
{ dockerTools, buildEnv, hello }: {
dockerTools,
buildEnv,
hello,
}:
dockerTools.buildImage { dockerTools.buildImage {
name = "hello"; name = "hello";
tag = "latest"; tag = "latest";
@ -766,7 +784,11 @@ The closure of `config` is automatically included in the generated image.
The following package shows a more compact way to create the same output generated in [](#ex-dockerTools-streamLayeredImage-hello). The following package shows a more compact way to create the same output generated in [](#ex-dockerTools-streamLayeredImage-hello).
```nix ```nix
{ dockerTools, hello, lib }: {
dockerTools,
hello,
lib,
}:
dockerTools.streamLayeredImage { dockerTools.streamLayeredImage {
name = "hello"; name = "hello";
tag = "latest"; tag = "latest";
@ -1547,11 +1569,15 @@ The Docker image generated will have a name like `hello-<version>-env` and tag `
This example uses [](#ex-dockerTools-streamNixShellImage-hello) as a starting point. This example uses [](#ex-dockerTools-streamNixShellImage-hello) as a starting point.
```nix ```nix
{ dockerTools, cowsay, hello }: {
dockerTools,
cowsay,
hello,
}:
dockerTools.streamNixShellImage { dockerTools.streamNixShellImage {
tag = "latest"; tag = "latest";
drv = hello.overrideAttrs (old: { drv = hello.overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs or [] ++ [ nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [
cowsay cowsay
]; ];
}); });

View file

@ -52,23 +52,23 @@ A `deterministic` flag is available for best efforts determinism.
To produce a Nix-store only image: To produce a Nix-store only image:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
lib = pkgs.lib; lib = pkgs.lib;
make-disk-image = import <nixpkgs/nixos/lib/make-disk-image.nix>; make-disk-image = import <nixpkgs/nixos/lib/make-disk-image.nix>;
in in
make-disk-image { make-disk-image {
inherit pkgs lib; inherit pkgs lib;
config = {}; config = { };
additionalPaths = [ ]; additionalPaths = [ ];
format = "qcow2"; format = "qcow2";
onlyNixStore = true; onlyNixStore = true;
partitionTableType = "none"; partitionTableType = "none";
installBootLoader = false; installBootLoader = false;
touchEFIVars = false; touchEFIVars = false;
diskSize = "auto"; diskSize = "auto";
additionalSpace = "0M"; # Defaults to 512M. additionalSpace = "0M"; # Defaults to 512M.
copyChannel = false; copyChannel = false;
} }
``` ```
Some arguments can be left out, they are shown explicitly for the sake of the example. Some arguments can be left out, they are shown explicitly for the sake of the example.
@ -78,29 +78,36 @@ Building this derivation will provide a QCOW2 disk image containing only the Nix
To produce a NixOS installation image disk with UEFI and bootloader installed: To produce a NixOS installation image disk with UEFI and bootloader installed:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
lib = pkgs.lib; lib = pkgs.lib;
make-disk-image = import <nixpkgs/nixos/lib/make-disk-image.nix>; make-disk-image = import <nixpkgs/nixos/lib/make-disk-image.nix>;
evalConfig = import <nixpkgs/nixos/lib/eval-config.nix>; evalConfig = import <nixpkgs/nixos/lib/eval-config.nix>;
in in
make-disk-image { make-disk-image {
inherit pkgs lib; inherit pkgs lib;
inherit (evalConfig { inherit
(evalConfig {
modules = [ modules = [
{ {
fileSystems."/" = { device = "/dev/vda"; fsType = "ext4"; autoFormat = true; }; fileSystems."/" = {
device = "/dev/vda";
fsType = "ext4";
autoFormat = true;
};
boot.grub.device = "/dev/vda"; boot.grub.device = "/dev/vda";
} }
]; ];
}) config; })
format = "qcow2"; config
onlyNixStore = false; ;
partitionTableType = "legacy+gpt"; format = "qcow2";
installBootLoader = true; onlyNixStore = false;
touchEFIVars = true; partitionTableType = "legacy+gpt";
diskSize = "auto"; installBootLoader = true;
additionalSpace = "0M"; # Defaults to 512M. touchEFIVars = true;
copyChannel = false; diskSize = "auto";
memSize = 2048; # Qemu VM memory size in megabytes. Defaults to 1024M. additionalSpace = "0M"; # Defaults to 512M.
} copyChannel = false;
memSize = 2048; # Qemu VM memory size in megabytes. Defaults to 1024M.
}
``` ```

View file

@ -76,7 +76,11 @@ Note that no user namespace is created, which means that you won't be able to ru
This example uses `ociTools.buildContainer` to create a simple container that runs `bash`. This example uses `ociTools.buildContainer` to create a simple container that runs `bash`.
```nix ```nix
{ ociTools, lib, bash }: {
ociTools,
lib,
bash,
}:
ociTools.buildContainer { ociTools.buildContainer {
args = [ args = [
(lib.getExe bash) (lib.getExe bash)

View file

@ -91,7 +91,12 @@ See [](#ex-portableService-hello) to understand how to use the output of `portab
The following example builds a Portable Service image with the `hello` package, along with a service unit that runs it. The following example builds a Portable Service image with the `hello` package, along with a service unit that runs it.
```nix ```nix
{ lib, writeText, portableService, hello }: {
lib,
writeText,
portableService,
hello,
}:
let let
hello-service = writeText "hello.service" '' hello-service = writeText "hello.service" ''
[Unit] [Unit]
@ -151,7 +156,13 @@ To make things available globally, you must specify the `symlinks` attribute whe
The following package builds on the package from [](#ex-portableService-hello) to make `/etc/ssl` available globally (this is only for illustrative purposes, because `hello` doesn't use `/etc/ssl`). The following package builds on the package from [](#ex-portableService-hello) to make `/etc/ssl` available globally (this is only for illustrative purposes, because `hello` doesn't use `/etc/ssl`).
```nix ```nix
{ lib, writeText, portableService, hello, cacert }: {
lib,
writeText,
portableService,
hello,
cacert,
}:
let let
hello-service = writeText "hello.service" '' hello-service = writeText "hello.service" ''
[Unit] [Unit]
@ -167,7 +178,10 @@ portableService {
inherit (hello) version; inherit (hello) version;
units = [ hello-service ]; units = [ hello-service ];
symlinks = [ symlinks = [
{ object = "${cacert}/etc/ssl"; symlink = "/etc/ssl"; } {
object = "${cacert}/etc/ssl";
symlink = "/etc/ssl";
}
]; ];
} }
``` ```

View file

@ -26,7 +26,9 @@ To change a normal derivation to a checkpoint based build, these steps must be t
## Example {#sec-checkpoint-build-example} ## Example {#sec-checkpoint-build-example}
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
let let
inherit (pkgs.checkpointBuildTools) inherit (pkgs.checkpointBuildTools)
prepareCheckpointBuild prepareCheckpointBuild
@ -39,5 +41,6 @@ let
sed -i 's/Hello, world!/Hello, Nix!/g' src/hello.c sed -i 's/Hello, world!/Hello, Nix!/g' src/hello.c
''; '';
}); });
in mkCheckpointBuild changedHello helloCheckpoint in
mkCheckpointBuild changedHello helloCheckpoint
``` ```

View file

@ -48,12 +48,19 @@ It is useful with functions in `dockerTools` to allow building Docker images tha
This example includes the `hello` binary in the image so it can do something besides just have the extra files. This example includes the `hello` binary in the image so it can do something besides just have the extra files.
```nix ```nix
{ dockerTools, fakeNss, hello }: {
dockerTools,
fakeNss,
hello,
}:
dockerTools.buildImage { dockerTools.buildImage {
name = "image-with-passwd"; name = "image-with-passwd";
tag = "latest"; tag = "latest";
copyToRoot = [ fakeNss hello ]; copyToRoot = [
fakeNss
hello
];
config = { config = {
Cmd = [ "/bin/hello" ]; Cmd = [ "/bin/hello" ];
@ -70,8 +77,8 @@ The following code uses `override` to add extra lines to `/etc/passwd` and `/etc
```nix ```nix
{ fakeNss }: { fakeNss }:
fakeNss.override { fakeNss.override {
extraPasswdLines = ["newuser:x:9001:9001:new user:/var/empty:/bin/sh"]; extraPasswdLines = [ "newuser:x:9001:9001:new user:/var/empty:/bin/sh" ];
extraGroupLines = ["newuser:x:9001:"]; extraGroupLines = [ "newuser:x:9001:" ];
} }
``` ```
::: :::

View file

@ -36,22 +36,29 @@ Accepted arguments are:
You can create a simple environment using a `shell.nix` like this: You can create a simple environment using a `shell.nix` like this:
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
(pkgs.buildFHSEnv { (pkgs.buildFHSEnv {
name = "simple-x11-env"; name = "simple-x11-env";
targetPkgs = pkgs: (with pkgs; [ targetPkgs =
udev pkgs:
alsa-lib (with pkgs; [
]) ++ (with pkgs.xorg; [ udev
libX11 alsa-lib
libXcursor ])
libXrandr ++ (with pkgs.xorg; [
]); libX11
multiPkgs = pkgs: (with pkgs; [ libXcursor
udev libXrandr
alsa-lib ]);
]); multiPkgs =
pkgs:
(with pkgs; [
udev
alsa-lib
]);
runScript = "bash"; runScript = "bash";
}).env }).env
``` ```

View file

@ -8,11 +8,16 @@ repetition when using it with `nix-shell` (or `nix develop`).
Here is a common usage example: Here is a common usage example:
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell { pkgs.mkShell {
packages = [ pkgs.gnumake ]; packages = [ pkgs.gnumake ];
inputsFrom = [ pkgs.hello pkgs.gnutar ]; inputsFrom = [
pkgs.hello
pkgs.gnutar
];
shellHook = '' shellHook = ''
export DEBUG=1 export DEBUG=1

View file

@ -31,25 +31,34 @@ If the build fails and Nix is run with the `-K/--keep-failed` option, a script `
Build the derivation hello inside a VM: Build the derivation hello inside a VM:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }: with pkgs; with vmTools; runInLinuxVM hello
runInLinuxVM hello
``` ```
Build inside a VM with extra memory: Build inside a VM with extra memory:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }:
runInLinuxVM (hello.overrideAttrs (_: { memSize = 1024; })) with pkgs;
with vmTools;
runInLinuxVM (
hello.overrideAttrs (_: {
memSize = 1024;
})
)
``` ```
Use VM with a disk image (implicitly sets `diskImage`, see [`vmTools.createEmptyImage`](#vm-tools-createEmptyImage)): Use VM with a disk image (implicitly sets `diskImage`, see [`vmTools.createEmptyImage`](#vm-tools-createEmptyImage)):
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }:
runInLinuxVM (hello.overrideAttrs (_: { with pkgs;
preVM = createEmptyImage { with vmTools;
size = 1024; runInLinuxVM (
fullName = "vm-image"; hello.overrideAttrs (_: {
}; preVM = createEmptyImage {
})) size = 1024;
fullName = "vm-image";
};
})
)
``` ```
## `vmTools.extractFs` {#vm-tools-extractFs} ## `vmTools.extractFs` {#vm-tools-extractFs}
@ -66,8 +75,7 @@ Takes a file, such as an ISO, and extracts its contents into the store.
Extract the contents of an ISO file: Extract the contents of an ISO file:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }: with pkgs; with vmTools; extractFs { file = ./image.iso; }
extractFs { file = ./image.iso; }
``` ```
## `vmTools.extractMTDfs` {#vm-tools-extractMTDfs} ## `vmTools.extractMTDfs` {#vm-tools-extractMTDfs}
@ -86,14 +94,12 @@ Generate a script that can be used to run an interactive session in the given im
Create a script for running a Fedora 27 VM: Create a script for running a Fedora 27 VM:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }: with pkgs; with vmTools; makeImageTestScript diskImages.fedora27x86_64
makeImageTestScript diskImages.fedora27x86_64
``` ```
Create a script for running an Ubuntu 20.04 VM: Create a script for running an Ubuntu 20.04 VM:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }: with pkgs; with vmTools; makeImageTestScript diskImages.ubuntu2004x86_64
makeImageTestScript diskImages.ubuntu2004x86_64
``` ```
## `vmTools.diskImageFuns` {#vm-tools-diskImageFuns} ## `vmTools.diskImageFuns` {#vm-tools-diskImageFuns}
@ -137,8 +143,13 @@ A set of functions that build a predefined set of minimal Linux distributions im
8GiB image containing Firefox in addition to the default packages: 8GiB image containing Firefox in addition to the default packages:
```nix ```nix
{ pkgs }: with pkgs; with vmTools; { pkgs }:
diskImageFuns.ubuntu2004x86_64 { extraPackages = [ "firefox" ]; size = 8192; } with pkgs;
with vmTools;
diskImageFuns.ubuntu2004x86_64 {
extraPackages = [ "firefox" ];
size = 8192;
}
``` ```
## `vmTools.diskImageExtraFuns` {#vm-tools-diskImageExtraFuns} ## `vmTools.diskImageExtraFuns` {#vm-tools-diskImageExtraFuns}

View file

@ -98,7 +98,8 @@ It has two modes:
```nix ```nix
{ {
"https://nix\\.dev/manual/nix/[a-z0-9.-]*" = "${nix.doc}/share/doc/nix/manual"; "https://nix\\.dev/manual/nix/[a-z0-9.-]*" = "${nix.doc}/share/doc/nix/manual";
"https://nixos\\.org/manual/nix/(un)?stable" = "${emptyDirectory}/placeholder-to-disallow-old-nix-docs-urls"; "https://nixos\\.org/manual/nix/(un)?stable" =
"${emptyDirectory}/placeholder-to-disallow-old-nix-docs-urls";
} }
``` ```
@ -302,18 +303,22 @@ While `testBuildFailure` is designed to keep changes to the original builder's e
# Check that a build fails, and verify the changes made during build # Check that a build fails, and verify the changes made during build
```nix ```nix
runCommand "example" { runCommand "example"
failed = testers.testBuildFailure (runCommand "fail" {} '' {
echo ok-ish >$out failed = testers.testBuildFailure (
echo failing though runCommand "fail" { } ''
exit 3 echo ok-ish >$out
''); echo failing though
} '' exit 3
grep -F 'ok-ish' $failed/result ''
grep -F 'failing though' $failed/testBuildFailure.log );
[[ 3 = $(cat $failed/testBuildFailure.exit) ]] }
touch $out ''
'' grep -F 'ok-ish' $failed/result
grep -F 'failing though' $failed/testBuildFailure.log
[[ 3 = $(cat $failed/testBuildFailure.exit) ]]
touch $out
''
``` ```
::: :::
@ -396,15 +401,18 @@ testers.testEqualContents {
expected = writeText "expected" '' expected = writeText "expected" ''
foo baz baz foo baz baz
''; '';
actual = runCommand "actual" { actual =
# not really necessary for a package that's in stdenv runCommand "actual"
nativeBuildInputs = [ gnused ]; {
base = writeText "base" '' # not really necessary for a package that's in stdenv
foo bar baz nativeBuildInputs = [ gnused ];
''; base = writeText "base" ''
} '' foo bar baz
sed -e 's/bar/baz/g' $base >$out '';
''; }
''
sed -e 's/bar/baz/g' $base >$out
'';
} }
``` ```
@ -515,10 +523,11 @@ Otherwise, the build log explains the difference via `nix-diff`.
# Check that two packages produce the same derivation # Check that two packages produce the same derivation
```nix ```nix
testers.testEqualDerivation testers.testEqualDerivation "The hello package must stay the same when enabling checks." hello (
"The hello package must stay the same when enabling checks." hello.overrideAttrs (o: {
hello doCheck = true;
(hello.overrideAttrs(o: { doCheck = true; })) })
)
``` ```
::: :::
@ -586,7 +595,10 @@ testers.runCommand {
curl -o /dev/null https://example.com curl -o /dev/null https://example.com
touch $out touch $out
''; '';
nativeBuildInputs = with pkgs; [ cacert curl ]; nativeBuildInputs = with pkgs; [
cacert
curl
];
} }
``` ```
@ -603,15 +615,20 @@ If your test is part of the Nixpkgs repository, or if you need a more general en
# Run a NixOS test using `runNixOSTest` # Run a NixOS test using `runNixOSTest`
```nix ```nix
pkgs.testers.runNixOSTest ({ lib, ... }: { pkgs.testers.runNixOSTest (
name = "hello"; { lib, ... }:
nodes.machine = { pkgs, ... }: { {
environment.systemPackages = [ pkgs.hello ]; name = "hello";
}; nodes.machine =
testScript = '' { pkgs, ... }:
machine.succeed("hello") {
''; environment.systemPackages = [ pkgs.hello ];
}) };
testScript = ''
machine.succeed("hello")
'';
}
)
``` ```
::: :::
@ -634,10 +651,17 @@ A [NixOS VM test network](https://nixos.org/nixos/manual/index.html#sec-nixos-te
{ {
name = "my-test"; name = "my-test";
nodes = { nodes = {
machine1 = { lib, pkgs, nodes, ... }: { machine1 =
environment.systemPackages = [ pkgs.hello ]; {
services.foo.enable = true; lib,
}; pkgs,
nodes,
...
}:
{
environment.systemPackages = [ pkgs.hello ];
services.foo.enable = true;
};
# machine2 = ...; # machine2 = ...;
}; };
testScript = '' testScript = ''

View file

@ -66,15 +66,17 @@ runCommandWith :: {
# Invocation of `runCommandWith` # Invocation of `runCommandWith`
```nix ```nix
runCommandWith { runCommandWith
name = "example"; {
derivationArgs.nativeBuildInputs = [ cowsay ]; name = "example";
} '' derivationArgs.nativeBuildInputs = [ cowsay ];
cowsay > $out <<EOMOO }
'runCommandWith' is a bit cumbersome, ''
so we have more ergonomic wrappers. cowsay > $out <<EOMOO
EOMOO 'runCommandWith' is a bit cumbersome,
'' so we have more ergonomic wrappers.
EOMOO
''
``` ```
::: :::
@ -118,7 +120,7 @@ While the type signature(s) differ from [`runCommandWith`], individual arguments
# Invocation of `runCommand` # Invocation of `runCommand`
```nix ```nix
runCommand "my-example" {} '' runCommand "my-example" { } ''
echo My example command is running echo My example command is running
mkdir $out mkdir $out
@ -238,7 +240,7 @@ The following fields are either required, are of a different type than in the sp
Write a desktop file `/nix/store/<store path>/my-program.desktop` to the Nix store. Write a desktop file `/nix/store/<store path>/my-program.desktop` to the Nix store.
```nix ```nix
{makeDesktopItem}: { makeDesktopItem }:
makeDesktopItem { makeDesktopItem {
name = "my-program"; name = "my-program";
desktopName = "My Program"; desktopName = "My Program";
@ -260,7 +262,10 @@ makeDesktopItem {
mimeTypes = [ "video/mp4" ]; mimeTypes = [ "video/mp4" ];
categories = [ "Utility" ]; categories = [ "Utility" ];
implements = [ "org.my-program" ]; implements = [ "org.my-program" ];
keywords = [ "Video" "Player" ]; keywords = [
"Video"
"Player"
];
startupNotify = false; startupNotify = false;
startupWMClass = "MyProgram"; startupWMClass = "MyProgram";
prefersNonDefaultGPU = false; prefersNonDefaultGPU = false;
@ -276,18 +281,22 @@ makeDesktopItem {
Override the `hello` package to add a desktop item. Override the `hello` package to add a desktop item.
```nix ```nix
{ copyDesktopItems {
, hello copyDesktopItems,
, makeDesktopItem }: hello,
makeDesktopItem,
}:
hello.overrideAttrs { hello.overrideAttrs {
nativeBuildInputs = [ copyDesktopItems ]; nativeBuildInputs = [ copyDesktopItems ];
desktopItems = [(makeDesktopItem { desktopItems = [
name = "hello"; (makeDesktopItem {
desktopName = "Hello"; name = "hello";
exec = "hello"; desktopName = "Hello";
})]; exec = "hello";
})
];
} }
``` ```
@ -446,10 +455,9 @@ The store path will include the name, and it will be a file.
Write the string `Contents of File` to `/nix/store/<store path>`: Write the string `Contents of File` to `/nix/store/<store path>`:
```nix ```nix
writeText "my-file" writeText "my-file" ''
''
Contents of File Contents of File
'' ''
``` ```
::: :::
@ -486,10 +494,9 @@ The store path will be a directory.
Write the string `Contents of File` to `/nix/store/<store path>/share/my-file`: Write the string `Contents of File` to `/nix/store/<store path>/share/my-file`:
```nix ```nix
writeTextDir "share/my-file" writeTextDir "share/my-file" ''
''
Contents of File Contents of File
'' ''
``` ```
::: :::
@ -528,10 +535,9 @@ The store path will include the name, and it will be a file.
Write the string `Contents of File` to `/nix/store/<store path>` and make the file executable. Write the string `Contents of File` to `/nix/store/<store path>` and make the file executable.
```nix ```nix
writeScript "my-file" writeScript "my-file" ''
''
Contents of File Contents of File
'' ''
``` ```
This is equivalent to: This is equivalent to:
@ -570,10 +576,9 @@ The store path will include the name, and it will be a directory.
# Usage of `writeScriptBin` # Usage of `writeScriptBin`
```nix ```nix
writeScriptBin "my-script" writeScriptBin "my-script" ''
''
echo "hi" echo "hi"
'' ''
``` ```
::: :::
@ -614,10 +619,9 @@ This function is almost exactly like [](#trivial-builder-writeScript), except th
# Usage of `writeShellScript` # Usage of `writeShellScript`
```nix ```nix
writeShellScript "my-script" writeShellScript "my-script" ''
''
echo "hi" echo "hi"
'' ''
``` ```
::: :::
@ -657,10 +661,9 @@ This function is a combination of [](#trivial-builder-writeShellScript) and [](#
# Usage of `writeShellScriptBin` # Usage of `writeShellScriptBin`
```nix ```nix
writeShellScriptBin "my-script" writeShellScriptBin "my-script" ''
''
echo "hi" echo "hi"
'' ''
``` ```
::: :::
@ -685,26 +688,40 @@ These functions concatenate `files` to the Nix store in a single file. This is u
Here are a few examples: Here are a few examples:
```nix ```nix
# Writes my-file to /nix/store/<store path> # Writes my-file to /nix/store/<store path>
concatTextFile { concatTextFile
name = "my-file"; {
files = [ drv1 "${drv2}/path/to/file" ]; name = "my-file";
} files = [
# See also the `concatText` helper function below. drv1
"${drv2}/path/to/file"
];
}
# See also the `concatText` helper function below.
# Writes executable my-file to /nix/store/<store path>/bin/my-file # Writes executable my-file to /nix/store/<store path>/bin/my-file
concatTextFile { concatTextFile
name = "my-file"; {
files = [ drv1 "${drv2}/path/to/file" ]; name = "my-file";
executable = true; files = [
destination = "/bin/my-file"; drv1
} "${drv2}/path/to/file"
# Writes contents of files to /nix/store/<store path> ];
concatText "my-file" [ file1 file2 ] executable = true;
destination = "/bin/my-file";
}
# Writes contents of files to /nix/store/<store path>
concatText
"my-file"
[ file1 file2 ]
# Writes contents of files to /nix/store/<store path> # Writes contents of files to /nix/store/<store path>
concatScript "my-file" [ file1 file2 ] concatScript
"my-file"
[
file1
file2
]
``` ```
## `writeShellApplication` {#trivial-builder-writeShellApplication} ## `writeShellApplication` {#trivial-builder-writeShellApplication}
@ -722,7 +739,10 @@ For example, the following shell application can refer to `curl` directly, rathe
writeShellApplication { writeShellApplication {
name = "show-nixos-org"; name = "show-nixos-org";
runtimeInputs = [ curl w3m ]; runtimeInputs = [
curl
w3m
];
text = '' text = ''
curl -s 'https://nixos.org' | w3m -dump -T text/html curl -s 'https://nixos.org' | w3m -dump -T text/html
@ -736,7 +756,14 @@ This can be used to put many derivations into the same directory structure. It w
Here is an example: Here is an example:
```nix ```nix
# adds symlinks of hello and stack to current build and prints "links added" # adds symlinks of hello and stack to current build and prints "links added"
symlinkJoin { name = "myexample"; paths = [ pkgs.hello pkgs.stack ]; postBuild = "echo links added"; } symlinkJoin {
name = "myexample";
paths = [
pkgs.hello
pkgs.stack
];
postBuild = "echo links added";
}
``` ```
This creates a derivation with a directory structure like the following: This creates a derivation with a directory structure like the following:
``` ```

View file

@ -13,17 +13,23 @@ let
# specifies how to format a key/value pair # specifies how to format a key/value pair
mkKeyValue = generators.mkKeyValueDefault { mkKeyValue = generators.mkKeyValueDefault {
# specifies the generated string for a subset of nix values # specifies the generated string for a subset of nix values
mkValueString = v: mkValueString =
if v == true then ''"yes"'' v:
else if v == false then ''"no"'' if v == true then
else if isString v then ''"${v}"'' ''"yes"''
else if v == false then
''"no"''
else if isString v then
''"${v}"''
# and delegates all other values to the default generator # and delegates all other values to the default generator
else generators.mkValueStringDefault {} v; else
generators.mkValueStringDefault { } v;
} ":"; } ":";
}; };
# the INI file can now be given as plain old nix values # the INI file can now be given as plain old nix values
in customToINI { in
customToINI {
main = { main = {
pushinfo = true; pushinfo = true;
autopush = false; autopush = false;

View file

@ -7,20 +7,23 @@
`pkgs.nix-gitignore` exports a number of functions, but you'll most likely need either `gitignoreSource` or `gitignoreSourcePure`. As their first argument, they both accept either 1. a file with gitignore lines or 2. a string with gitignore lines, or 3. a list of either of the two. They will be concatenated into a single big string. `pkgs.nix-gitignore` exports a number of functions, but you'll most likely need either `gitignoreSource` or `gitignoreSourcePure`. As their first argument, they both accept either 1. a file with gitignore lines or 2. a string with gitignore lines, or 3. a list of either of the two. They will be concatenated into a single big string.
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: { {
pkgs ? import <nixpkgs> { },
}:
{
src = nix-gitignore.gitignoreSource [] ./source; src = nix-gitignore.gitignoreSource [ ] ./source;
# Simplest version # Simplest version
src = nix-gitignore.gitignoreSource "supplemental-ignores\n" ./source; src = nix-gitignore.gitignoreSource "supplemental-ignores\n" ./source;
# This one reads the ./source/.gitignore and concats the auxiliary ignores # This one reads the ./source/.gitignore and concats the auxiliary ignores
src = nix-gitignore.gitignoreSourcePure "ignore-this\nignore-that\n" ./source; src = nix-gitignore.gitignoreSourcePure "ignore-this\nignore-that\n" ./source;
# Use this string as gitignore, don't read ./source/.gitignore. # Use this string as gitignore, don't read ./source/.gitignore.
src = nix-gitignore.gitignoreSourcePure ["ignore-this\nignore-that\n" ~/.gitignore] ./source; src = nix-gitignore.gitignoreSourcePure [ "ignore-this\nignore-that\n" ~/.gitignore ] ./source;
# It also accepts a list (of strings and paths) that will be concatenated # It also accepts a list (of strings and paths) that will be concatenated
# once the paths are turned to strings via readFile. # once the paths are turned to strings via readFile.
} }
``` ```

View file

@ -3,8 +3,7 @@
`prefer-remote-fetch` is an overlay that download sources on remote builder. This is useful when the evaluating machine has a slow upload while the builder can fetch faster directly from the source. To use it, put the following snippet as a new overlay: `prefer-remote-fetch` is an overlay that download sources on remote builder. This is useful when the evaluating machine has a slow upload while the builder can fetch faster directly from the source. To use it, put the following snippet as a new overlay:
```nix ```nix
self: super: self: super: (super.prefer-remote-fetch self super)
(super.prefer-remote-fetch self super)
``` ```
A full configuration example for that sets the overlay up for your own account, could look like this A full configuration example for that sets the overlay up for your own account, could look like this

View file

@ -11,15 +11,15 @@ the neceesary environment variables to use
Example: Example:
```nix ```nix
{ mpiCheckPhaseHook, mpi, ... }: { mpiCheckPhaseHook, mpi, ... }:
{ {
# ... # ...
nativeCheckInputs = [ nativeCheckInputs = [
openssh openssh
mpiCheckPhaseHook mpiCheckPhaseHook
]; ];
} }
``` ```

View file

@ -29,7 +29,11 @@ Given a package `foo` containing an init script `this-foo.fish` that depends on
patch the init script for users to source without having the above dependencies in their `PATH`: patch the init script for users to source without having the above dependencies in their `PATH`:
```nix ```nix
{ lib, stdenv, patchRcPathFish}: {
lib,
stdenv,
patchRcPathFish,
}:
stdenv.mkDerivation { stdenv.mkDerivation {
# ... # ...
@ -39,7 +43,13 @@ stdenv.mkDerivation {
]; ];
postFixup = '' postFixup = ''
patchRcPathFish $out/bin/this-foo.fish ${lib.makeBinPath [ coreutils man which ]} patchRcPathFish $out/bin/this-foo.fish ${
lib.makeBinPath [
coreutils
man
which
]
}
''; '';
} }
``` ```

View file

@ -4,7 +4,11 @@
This hook starts a PostgreSQL server during the `checkPhase`. Example: This hook starts a PostgreSQL server during the `checkPhase`. Example:
```nix ```nix
{ stdenv, postgresql, postgresqlTestHook }: {
stdenv,
postgresql,
postgresqlTestHook,
}:
stdenv.mkDerivation { stdenv.mkDerivation {
# ... # ...
@ -18,13 +22,13 @@ stdenv.mkDerivation {
If you use a custom `checkPhase`, remember to add the `runHook` calls: If you use a custom `checkPhase`, remember to add the `runHook` calls:
```nix ```nix
checkPhase '' checkPhase ''
runHook preCheck runHook preCheck
# ... your tests # ... your tests
runHook postCheck runHook postCheck
'' ''
``` ```
## Variables {#sec-postgresqlTestHook-variables} ## Variables {#sec-postgresqlTestHook-variables}

View file

@ -7,7 +7,7 @@ This hook starts a Redis server during `checkPhase`. Example:
{ {
stdenv, stdenv,
redis, redis,
redisTestHook redisTestHook,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
@ -47,7 +47,11 @@ Bash-only variables:
Example usage: Example usage:
```nix ```nix
{ stdenv, redis, redisTestHook }: {
stdenv,
redis,
redisTestHook,
}:
stdenv.mkDerivation { stdenv.mkDerivation {
# ... # ...
@ -60,3 +64,4 @@ stdenv.mkDerivation {
redisTestPort=6390; redisTestPort=6390;
''; '';
} }
```

View file

@ -9,7 +9,7 @@ You use it like this:
lib, lib,
stdenv, stdenv,
versionCheckHook, versionCheckHook,
# ... # ...
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {

View file

@ -7,9 +7,10 @@ In Nixpkgs, `zig.hook` overrides the default build, check and install phases.
## Example code snippet {#zig-hook-example-code-snippet} ## Example code snippet {#zig-hook-example-code-snippet}
```nix ```nix
{ lib {
, stdenv lib,
, zig stdenv,
zig,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {

View file

@ -63,17 +63,27 @@ For example, the `fetchFromGitHub` is commonly used within Nixpkgs but should be
`nix:fod` properties may be extracted and evaluated to a derivation using code similar to the following, assuming a fictitious function `filterPropertiesToAttrs`: `nix:fod` properties may be extracted and evaluated to a derivation using code similar to the following, assuming a fictitious function `filterPropertiesToAttrs`:
```nix ```nix
{ pkgs, filterPropertiesToAttrs, properties }: {
pkgs,
filterPropertiesToAttrs,
properties,
}:
let let
fodProps = filterPropertiesToAttrs "nix:fod:" properties; fodProps = filterPropertiesToAttrs "nix:fod:" properties;
methods = { methods = {
fetchzip = fetchzip =
{ name, url, sha256, ... }: {
name,
url,
sha256,
...
}:
pkgs.fetchzip { pkgs.fetchzip {
inherit name url sha256; inherit name url sha256;
}; };
}; };
in methods.${fodProps.method} fodProps in
methods.${fodProps.method} fodProps
``` ```

View file

@ -48,7 +48,7 @@ You can also reference a GitHub repository
agda.withPackages (p: [ agda.withPackages (p: [
(p.standard-library.overrideAttrs (oldAttrs: { (p.standard-library.overrideAttrs (oldAttrs: {
version = "1.5"; version = "1.5";
src = fetchFromGitHub { src = fetchFromGitHub {
repo = "agda-stdlib"; repo = "agda-stdlib";
owner = "agda"; owner = "agda";
rev = "v1.5"; rev = "v1.5";
@ -114,7 +114,9 @@ This can be overridden by a different version of `ghc` as follows:
```nix ```nix
agda.withPackages { agda.withPackages {
pkgs = [ /* ... */ ]; pkgs = [
# ...
];
ghc = haskell.compiler.ghcHEAD; ghc = haskell.compiler.ghcHEAD;
} }
``` ```
@ -132,8 +134,10 @@ A derivation can then be written using `agdaPackages.mkDerivation`. This has sim
Here is an example `default.nix` Here is an example `default.nix`
```nix ```nix
{ nixpkgs ? <nixpkgs> }: {
with (import nixpkgs {}); nixpkgs ? <nixpkgs>,
}:
with (import nixpkgs { });
agdaPackages.mkDerivation { agdaPackages.mkDerivation {
version = "1.0"; version = "1.0";
pname = "my-agda-lib"; pname = "my-agda-lib";
@ -179,8 +183,12 @@ the Agda package set is small and can (still) be maintained by hand.
To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the top line of the `default.nix` can look like: To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the top line of the `default.nix` can look like:
```nix ```nix
{ mkDerivation, standard-library, fetchFromGitHub }: {
{} mkDerivation,
standard-library,
fetchFromGitHub,
}:
{ }
``` ```
Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you

View file

@ -9,7 +9,7 @@ Use the `android-studio-full` attribute for a very complete Android SDK, includi
```nix ```nix
{ {
buildInputs = [ android-studio-full ]; buildInputs = [ android-studio-full ];
} }
``` ```
@ -17,7 +17,7 @@ This is identical to:
```nix ```nix
{ {
buildInputs = [ androidStudioPackages.stable.full ]; buildInputs = [ androidStudioPackages.stable.full ];
} }
``` ```
@ -25,11 +25,13 @@ Alternatively, you can pass composeAndroidPackages to the `withSdk` passthru:
```nix ```nix
{ {
buildInputs = [ buildInputs = [
(android-studio.withSdk (androidenv.composeAndroidPackages { (android-studio.withSdk
includeNDK = true; (androidenv.composeAndroidPackages {
}).androidsdk) includeNDK = true;
]; }).androidsdk
)
];
} }
``` ```
@ -41,13 +43,19 @@ in the specified Android build environment.
Alternatively, you can deploy the SDK separately with a desired set of plugins, or subsets of an SDK. Alternatively, you can deploy the SDK separately with a desired set of plugins, or subsets of an SDK.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
let let
androidComposition = androidenv.composeAndroidPackages { androidComposition = androidenv.composeAndroidPackages {
platformVersions = [ "34" "35" ]; platformVersions = [
"34"
"35"
];
systemImageTypes = [ "google_apis_playstore" ]; systemImageTypes = [ "google_apis_playstore" ];
abiVersions = [ "armeabi-v7a" "arm64-v8a" ]; abiVersions = [
"armeabi-v7a"
"arm64-v8a"
];
includeNDK = true; includeNDK = true;
includeExtras = [ includeExtras = [
"extras;google;auto" "extras;google;auto"
@ -171,7 +179,7 @@ We can also deploy subsets of the Android SDK. For example, to only the
`platform-tools` package, you can evaluate the following expression: `platform-tools` package, you can evaluate the following expression:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
let let
androidComposition = androidenv.composeAndroidPackages { androidComposition = androidenv.composeAndroidPackages {
@ -189,7 +197,7 @@ to use a predefined composition that contains a fairly complete set of Android p
The following Nix expression can be used to deploy the entire SDK: The following Nix expression can be used to deploy the entire SDK:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
androidenv.androidPkgs.androidsdk androidenv.androidPkgs.androidsdk
``` ```
@ -197,7 +205,7 @@ androidenv.androidPkgs.androidsdk
It is also possible to use one plugin only: It is also possible to use one plugin only:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
androidenv.androidPkgs.platform-tools androidenv.androidPkgs.platform-tools
``` ```
@ -211,7 +219,7 @@ An emulator spawn script can be configured by invoking the `emulateApp {}`
function: function:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
androidenv.emulateApp { androidenv.emulateApp {
name = "emulate-MyAndroidApp"; name = "emulate-MyAndroidApp";
@ -227,7 +235,7 @@ It is also possible to specify an APK to deploy inside the emulator
and the package and activity names to launch it: and the package and activity names to launch it:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
androidenv.emulateApp { androidenv.emulateApp {
name = "emulate-MyAndroidApp"; name = "emulate-MyAndroidApp";
@ -350,7 +358,7 @@ requires. Most newer Android projects use Gradle, and this is included for histo
purposes. purposes.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
androidenv.buildApp { androidenv.buildApp {
name = "MyAndroidApp"; name = "MyAndroidApp";

View file

@ -60,7 +60,10 @@ $ nix-shell -p beamPackages.rebar3
```nix ```nix
let let
pkgs = import <nixpkgs> { config = {}; overlays = []; }; pkgs = import <nixpkgs> {
config = { };
overlays = [ ];
};
in in
pkgs.mkShell { pkgs.mkShell {
packages = [ pkgs.beamPackages.rebar3 ]; packages = [ pkgs.beamPackages.rebar3 ];
@ -120,26 +123,28 @@ If there are git dependencies.
{ {
mixNixDeps = import ./mix.nix { mixNixDeps = import ./mix.nix {
inherit beamPackages lib; inherit beamPackages lib;
overrides = (final: prev: { overrides = (
# mix2nix does not support git dependencies yet, final: prev: {
# so we need to add them manually # mix2nix does not support git dependencies yet,
prometheus_ex = beamPackages.buildMix rec { # so we need to add them manually
name = "prometheus_ex"; prometheus_ex = beamPackages.buildMix rec {
version = "3.0.5"; name = "prometheus_ex";
version = "3.0.5";
# Change the argument src with the git src that you actually need # Change the argument src with the git src that you actually need
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "git.pleroma.social"; domain = "git.pleroma.social";
group = "pleroma"; group = "pleroma";
owner = "elixir-libraries"; owner = "elixir-libraries";
repo = "prometheus.ex"; repo = "prometheus.ex";
rev = "a4e9beb3c1c479d14b352fd9d6dd7b1f6d7deee5"; rev = "a4e9beb3c1c479d14b352fd9d6dd7b1f6d7deee5";
hash = "sha256-U17LlN6aGUKUFnT4XyYXppRN+TvUBIBRHEUsfeIiGOw="; hash = "sha256-U17LlN6aGUKUFnT4XyYXppRN+TvUBIBRHEUsfeIiGOw=";
};
# you can re-use the same beamDeps argument as generated
beamDeps = with final; [ prometheus ];
}; };
# you can re-use the same beamDeps argument as generated }
beamDeps = with final; [ prometheus ]; );
};
});
}; };
} }
``` ```
@ -195,15 +200,21 @@ let
hash = lib.fakeHash; hash = lib.fakeHash;
mixEnv = ""; # default is "prod", when empty includes all dependencies, such as "dev", "test". mixEnv = ""; # default is "prod", when empty includes all dependencies, such as "dev", "test".
# if you have build time environment variables add them here # if you have build time environment variables add them here
MY_ENV_VAR="my_value"; MY_ENV_VAR = "my_value";
}; };
nodeDependencies = (pkgs.callPackage ./assets/default.nix { }).shell.nodeDependencies; nodeDependencies = (pkgs.callPackage ./assets/default.nix { }).shell.nodeDependencies;
in packages.mixRelease { in
inherit src pname version mixFodDeps; packages.mixRelease {
inherit
src
pname
version
mixFodDeps
;
# if you have build time environment variables add them here # if you have build time environment variables add them here
MY_ENV_VAR="my_value"; MY_ENV_VAR = "my_value";
postBuild = '' postBuild = ''
ln -sf ${nodeDependencies}/lib/node_modules assets/node_modules ln -sf ${nodeDependencies}/lib/node_modules assets/node_modules
@ -231,7 +242,12 @@ In order to create a service with your release, you could add a `service.nix`
in your project with the following in your project with the following
```nix ```nix
{config, pkgs, lib, ...}: {
config,
pkgs,
lib,
...
}:
let let
release = pkgs.callPackage ./default.nix; release = pkgs.callPackage ./default.nix;
@ -241,10 +257,16 @@ in
{ {
systemd.services.${release_name} = { systemd.services.${release_name} = {
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "network.target" "postgresql.service" ]; after = [
"network.target"
"postgresql.service"
];
# note that if you are connecting to a postgres instance on a different host # note that if you are connecting to a postgres instance on a different host
# postgresql.service should not be included in the requires. # postgresql.service should not be included in the requires.
requires = [ "network-online.target" "postgresql.service" ]; requires = [
"network-online.target"
"postgresql.service"
];
description = "my app"; description = "my app";
environment = { environment = {
# RELEASE_TMP is used to write the state of the # RELEASE_TMP is used to write the state of the
@ -292,7 +314,9 @@ in
Usually, we need to create a `shell.nix` file and do our development inside of the environment specified therein. Just install your version of Erlang and any other interpreters, and then use your normal build tools. As an example with Elixir: Usually, we need to create a `shell.nix` file and do our development inside of the environment specified therein. Just install your version of Erlang and any other interpreters, and then use your normal build tools. As an example with Elixir:
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
with pkgs; with pkgs;
let let
@ -311,12 +335,14 @@ If you need to use an overlay to change some attributes of a derivation, e.g. if
```nix ```nix
let let
elixir_1_18_1_overlay = (self: super: { elixir_1_18_1_overlay = (
self: super: {
elixir_1_18 = super.elixir_1_18.override { elixir_1_18 = super.elixir_1_18.override {
version = "1.18.1"; version = "1.18.1";
sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA="; sha256 = "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=";
}; };
}); }
);
pkgs = import <nixpkgs> { overlays = [ elixir_1_18_1_overlay ]; }; pkgs = import <nixpkgs> { overlays = [ elixir_1_18_1_overlay ]; };
in in
with pkgs; with pkgs;
@ -349,9 +375,16 @@ let
nodePackages.prettier nodePackages.prettier
]; ];
inputs = basePackages ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ] inputs =
++ lib.optionals stdenv.hostPlatform.isDarwin basePackages
(with darwin.apple_sdk.frameworks; [ CoreFoundation CoreServices ]); ++ lib.optionals stdenv.hostPlatform.isLinux [ inotify-tools ]
++ lib.optionals stdenv.hostPlatform.isDarwin (
with darwin.apple_sdk.frameworks;
[
CoreFoundation
CoreServices
]
);
# define shell startup command # define shell startup command
hooks = '' hooks = ''
@ -380,7 +413,8 @@ let
export ENV_VAR="your_env_var" export ENV_VAR="your_env_var"
''; '';
in mkShell { in
mkShell {
buildInputs = inputs; buildInputs = inputs;
shellHook = hooks; shellHook = hooks;
} }

View file

@ -24,11 +24,15 @@ Running `bower2nix` will produce something like the following output:
```nix ```nix
{ fetchbower, buildEnv }: { fetchbower, buildEnv }:
buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ buildEnv {
(fetchbower "angular" "1.5.3" "~1.5.0" "1749xb0firxdra4rzadm4q9x90v6pzkbd7xmcyjk6qfza09ykk9y") name = "bower-env";
(fetchbower "bootstrap" "3.3.6" "~3.3.6" "1vvqlpbfcy0k5pncfjaiskj3y6scwifxygfqnw393sjfxiviwmbv") ignoreCollisions = true;
(fetchbower "jquery" "2.2.2" "1.9.1 - 2" "10sp5h98sqwk90y4k6hbdviwqzvzwqf47r3r51pakch5ii2y7js1") paths = [
]; } (fetchbower "angular" "1.5.3" "~1.5.0" "1749xb0firxdra4rzadm4q9x90v6pzkbd7xmcyjk6qfza09ykk9y")
(fetchbower "bootstrap" "3.3.6" "~3.3.6" "1vvqlpbfcy0k5pncfjaiskj3y6scwifxygfqnw393sjfxiviwmbv")
(fetchbower "jquery" "2.2.2" "1.9.1 - 2" "10sp5h98sqwk90y4k6hbdviwqzvzwqf47r3r51pakch5ii2y7js1")
];
}
``` ```
Using the `bower2nix` command line arguments, the output can be redirected to a file. A name like `bower-packages.nix` would be fine. Using the `bower2nix` command line arguments, the output can be redirected to a file. A name like `bower-packages.nix` would be fine.
@ -80,8 +84,12 @@ gulp.task('build', [], function () {
### Example Full example — default.nix {#ex-buildBowerComponentsDefaultNix} ### Example Full example — default.nix {#ex-buildBowerComponentsDefaultNix}
```nix ```nix
{ myWebApp ? { outPath = ./.; name = "myWebApp"; } {
, pkgs ? import <nixpkgs> {} myWebApp ? {
outPath = ./.;
name = "myWebApp";
},
pkgs ? import <nixpkgs> { },
}: }:
pkgs.stdenv.mkDerivation { pkgs.stdenv.mkDerivation {
@ -90,7 +98,8 @@ pkgs.stdenv.mkDerivation {
buildInputs = [ pkgs.nodePackages.gulp ]; buildInputs = [ pkgs.nodePackages.gulp ];
bowerComponents = pkgs.buildBowerComponents { # note 1 bowerComponents = pkgs.buildBowerComponents {
# note 1
name = "my-web-app"; name = "my-web-app";
generated = ./bower-packages.nix; generated = ./bower-packages.nix;
src = myWebApp; src = myWebApp;

View file

@ -60,19 +60,23 @@ all the other eggs:
```nix ```nix
let let
myChickenPackages = pkgs.chickenPackages.overrideScope (self: super: { myChickenPackages = pkgs.chickenPackages.overrideScope (
self: super: {
# The chicken package itself can be overridden to effect the whole ecosystem. # The chicken package itself can be overridden to effect the whole ecosystem.
# chicken = super.chicken.overrideAttrs { # chicken = super.chicken.overrideAttrs {
# src = ... # src = ...
# }; # };
chickenEggs = super.chickenEggs.overrideScope (eggself: eggsuper: { chickenEggs = super.chickenEggs.overrideScope (
srfi-180 = eggsuper.srfi-180.overrideAttrs { eggself: eggsuper: {
# path to a local copy of srfi-180 srfi-180 = eggsuper.srfi-180.overrideAttrs {
src = <...>; # path to a local copy of srfi-180
}; src = <...>;
}); };
}); }
);
}
);
in in
# Here, `myChickenPackages.chickenEggs.json-rpc`, which depends on `srfi-180` will use # Here, `myChickenPackages.chickenEggs.json-rpc`, which depends on `srfi-180` will use
# the local copy of `srfi-180`. # the local copy of `srfi-180`.

View file

@ -54,35 +54,78 @@ It also takes other standard `mkDerivation` attributes, they are added as such,
Here is a simple package example. It is a pure Coq library, thus it depends on Coq. It builds on the Mathematical Components library, thus it also takes some `mathcomp` derivations as `extraBuildInputs`. Here is a simple package example. It is a pure Coq library, thus it depends on Coq. It builds on the Mathematical Components library, thus it also takes some `mathcomp` derivations as `extraBuildInputs`.
```nix ```nix
{ lib, mkCoqDerivation, version ? null {
, coq, mathcomp, mathcomp-finmap, mathcomp-bigenough }: lib,
mkCoqDerivation,
version ? null,
coq,
mathcomp,
mathcomp-finmap,
mathcomp-bigenough,
}:
mkCoqDerivation { mkCoqDerivation {
/* namePrefix leads to e.g. `name = coq8.11-mathcomp1.11-multinomials-1.5.2` */ # namePrefix leads to e.g. `name = coq8.11-mathcomp1.11-multinomials-1.5.2`
namePrefix = [ "coq" "mathcomp" ]; namePrefix = [
"coq"
"mathcomp"
];
pname = "multinomials"; pname = "multinomials";
owner = "math-comp"; owner = "math-comp";
inherit version; inherit version;
defaultVersion = with lib.versions; lib.switch [ coq.version mathcomp.version ] [ defaultVersion =
{ cases = [ (range "8.7" "8.12") (isEq "1.11") ]; out = "1.5.2"; } with lib.versions;
{ cases = [ (range "8.7" "8.11") (range "1.8" "1.10") ]; out = "1.5.0"; } lib.switch
{ cases = [ (range "8.7" "8.10") (range "1.8" "1.10") ]; out = "1.4"; } [ coq.version mathcomp.version ]
{ cases = [ (isEq "8.6") (range "1.6" "1.7") ]; out = "1.1"; } [
] null; {
cases = [
(range "8.7" "8.12")
(isEq "1.11")
];
out = "1.5.2";
}
{
cases = [
(range "8.7" "8.11")
(range "1.8" "1.10")
];
out = "1.5.0";
}
{
cases = [
(range "8.7" "8.10")
(range "1.8" "1.10")
];
out = "1.4";
}
{
cases = [
(isEq "8.6")
(range "1.6" "1.7")
];
out = "1.1";
}
]
null;
release = { release = {
"1.5.2".hash = "sha256-mjCx9XKa38Nz9E6wNK7YSqHdJ7YTua5fD3d6J4e7WpU="; "1.5.2".hash = "sha256-mjCx9XKa38Nz9E6wNK7YSqHdJ7YTua5fD3d6J4e7WpU=";
"1.5.1".hash = "sha256-Q8tm0y2FQAt2V1kZYkDlHWRia/lTvXAMVjdmzEV11I4="; "1.5.1".hash = "sha256-Q8tm0y2FQAt2V1kZYkDlHWRia/lTvXAMVjdmzEV11I4=";
"1.5.0".hash = "sha256-HIK0f21G69oEW8JG46gSBde/Q2LR3GiBCv680gHbmRg="; "1.5.0".hash = "sha256-HIK0f21G69oEW8JG46gSBde/Q2LR3GiBCv680gHbmRg=";
"1.5.0".rev = "1.5"; "1.5.0".rev = "1.5";
"1.4".hash = "sha256-F9g3MSIr3B6UZ3p8QWjz3/Jpw9sudJ+KRlvjiHSO024="; "1.4".hash = "sha256-F9g3MSIr3B6UZ3p8QWjz3/Jpw9sudJ+KRlvjiHSO024=";
"1.3".hash = "sha256-BPJTlAL0ETHvLMBslE0KFVt3DNoaGuMrHt2SBGyJe1A="; "1.3".hash = "sha256-BPJTlAL0ETHvLMBslE0KFVt3DNoaGuMrHt2SBGyJe1A=";
"1.2".hash = "sha256-mHXBXSLYO4BN+jfN50y/+XCx0Qq5g4Ac2Y/qlsbgAdY="; "1.2".hash = "sha256-mHXBXSLYO4BN+jfN50y/+XCx0Qq5g4Ac2Y/qlsbgAdY=";
"1.1".hash = "sha256-ejAsMQbB/LtU9j+g160VdGXULrCe9s0gBWzyhKqmCuE="; "1.1".hash = "sha256-ejAsMQbB/LtU9j+g160VdGXULrCe9s0gBWzyhKqmCuE=";
"1.0".hash = "sha256-tZTOltEBBKWciDxDMs/Ye4Jnq/33CANrHJ4FBMPtq+I="; "1.0".hash = "sha256-tZTOltEBBKWciDxDMs/Ye4Jnq/33CANrHJ4FBMPtq+I=";
}; };
propagatedBuildInputs = propagatedBuildInputs = [
[ mathcomp.ssreflect mathcomp.algebra mathcomp-finmap mathcomp-bigenough ]; mathcomp.ssreflect
mathcomp.algebra
mathcomp-finmap
mathcomp-bigenough
];
meta = { meta = {
description = "Coq/SSReflect Library for Monoidal Rings and Multinomials"; description = "Coq/SSReflect Library for Monoidal Rings and Multinomials";
@ -124,12 +167,10 @@ The `overrideCoqDerivation` function lets you easily change arguments to `mkCoqD
For example, here is how you could locally add a new release of the `multinomials` library, and set the `defaultVersion` to use this release: For example, here is how you could locally add a new release of the `multinomials` library, and set the `defaultVersion` to use this release:
```nix ```nix
coqPackages.lib.overrideCoqDerivation coqPackages.lib.overrideCoqDerivation {
{ defaultVersion = "2.0";
defaultVersion = "2.0"; release."2.0".hash = "sha256-czoP11rtrIM7+OLdMisv2EF7n/IbGuwFxHiPtg3qCNM=";
release."2.0".hash = "sha256-czoP11rtrIM7+OLdMisv2EF7n/IbGuwFxHiPtg3qCNM="; } coqPackages.multinomials
}
coqPackages.multinomials
``` ```
### `.overrideAttrs` {#coq-overrideAttrs} ### `.overrideAttrs` {#coq-overrideAttrs}
@ -140,8 +181,10 @@ For instance, here is how you could add some code to be performed in the derivat
```nix ```nix
coqPackages.multinomials.overrideAttrs (oldAttrs: { coqPackages.multinomials.overrideAttrs (oldAttrs: {
postInstall = oldAttrs.postInstall or "" + '' postInstall =
echo "you can do anything you want here" oldAttrs.postInstall or ""
''; + ''
echo "you can do anything you want here"
'';
}) })
``` ```

View file

@ -18,7 +18,7 @@ This should have generated a `shards.nix` file.
Next create a Nix file for your derivation and use `pkgs.crystal.buildCrystalPackage` as follows: Next create a Nix file for your derivation and use `pkgs.crystal.buildCrystalPackage` as follows:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
crystal.buildCrystalPackage rec { crystal.buildCrystalPackage rec {
pname = "mint"; pname = "mint";
version = "0.5.0"; version = "0.5.0";
@ -51,14 +51,17 @@ Additionally you can override the default `crystal build` options (which are cur
```nix ```nix
{ {
crystalBinaries.mint.options = [ "--release" "--verbose" ]; crystalBinaries.mint.options = [
"--release"
"--verbose"
];
} }
``` ```
Depending on the project, you might need additional steps to get it to compile successfully. In Mint's case, we need to link against openssl, so in the end the Nix file looks as follows: Depending on the project, you might need additional steps to get it to compile successfully. In Mint's case, we need to link against openssl, so in the end the Nix file looks as follows:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
crystal.buildCrystalPackage rec { crystal.buildCrystalPackage rec {
version = "0.5.0"; version = "0.5.0";
pname = "mint"; pname = "mint";

View file

@ -12,11 +12,13 @@ compatible are available as well. For example, there can be a
To use one or more CUDA packages in an expression, give the expression a `cudaPackages` parameter, and in case CUDA is optional To use one or more CUDA packages in an expression, give the expression a `cudaPackages` parameter, and in case CUDA is optional
```nix ```nix
{ config {
, cudaSupport ? config.cudaSupport config,
, cudaPackages ? { } cudaSupport ? config.cudaSupport,
, ... cudaPackages ? { },
}: {} ...
}:
{ }
``` ```
When using `callPackage`, you can choose to pass in a different variant, e.g. When using `callPackage`, you can choose to pass in a different variant, e.g.
@ -32,11 +34,15 @@ package set to make it the default. This guarantees you get a consistent package
set. set.
```nix ```nix
{ {
mypkg = let mypkg =
cudaPackages = cudaPackages_11_5.overrideScope (final: prev: { let
cudnn = prev.cudnn_8_3; cudaPackages = cudaPackages_11_5.overrideScope (
}); final: prev: {
in callPackage { inherit cudaPackages; }; cudnn = prev.cudnn_8_3;
}
);
in
callPackage { inherit cudaPackages; };
} }
``` ```

View file

@ -27,13 +27,11 @@ Nixpkgs provides a `pkgs.writeCueValidator` helper, which will write a validatio
Here is an example: Here is an example:
```nix ```nix
pkgs.writeCueValidator pkgs.writeCueValidator (pkgs.writeText "schema.cue" ''
(pkgs.writeText "schema.cue" '' #Def1: {
#Def1: { field1: string
field1: string }
} '') { document = "#Def1"; }
'')
{ document = "#Def1"; }
``` ```
- The first parameter is the Cue schema file. - The first parameter is the Cue schema file.
@ -43,19 +41,19 @@ pkgs.writeCueValidator
Another example, given the following `validator.nix` : Another example, given the following `validator.nix` :
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
let let
genericValidator = version: genericValidator =
pkgs.writeCueValidator version:
(pkgs.writeText "schema.cue" '' pkgs.writeCueValidator (pkgs.writeText "schema.cue" ''
#Version1: { #Version1: {
field1: string field1: string
} }
#Version2: #Version1 & { #Version2: #Version1 & {
field1: "unused" field1: "unused"
}'' }'') { document = "#Version${toString version}"; };
)
{ document = "#Version${toString version}"; };
in in
{ {
validateV1 = genericValidator 1; validateV1 = genericValidator 1;

View file

@ -30,7 +30,11 @@ The `dart` commands run can be overridden through `pubGetScript` and `dartCompil
Dart supports multiple [outputs types](https://dart.dev/tools/dart-compile#types-of-output), you can choose between them using `dartOutputType` (defaults to `exe`). If you want to override the binaries path or the source path they come from, you can use `dartEntryPoints`. Outputs that require a runtime will automatically be wrapped with the relevant runtime (`dartaotruntime` for `aot-snapshot`, `dart run` for `jit-snapshot` and `kernel`, `node` for `js`), this can be overridden through `dartRuntimeCommand`. Dart supports multiple [outputs types](https://dart.dev/tools/dart-compile#types-of-output), you can choose between them using `dartOutputType` (defaults to `exe`). If you want to override the binaries path or the source path they come from, you can use `dartEntryPoints`. Outputs that require a runtime will automatically be wrapped with the relevant runtime (`dartaotruntime` for `aot-snapshot`, `dart run` for `jit-snapshot` and `kernel`, `node` for `js`), this can be overridden through `dartRuntimeCommand`.
```nix ```nix
{ lib, buildDartApplication, fetchFromGitHub }: {
lib,
buildDartApplication,
fetchFromGitHub,
}:
buildDartApplication rec { buildDartApplication rec {
pname = "dart-sass"; pname = "dart-sass";
@ -101,7 +105,7 @@ See the [Dart documentation](#ssec-dart-applications) for more details on requir
`flutter` in Nixpkgs always points to `flutterPackages.stable`, which is the latest packaged version. To avoid unforeseen breakage during upgrade, packages in Nixpkgs should use a specific flutter version, such as `flutter319` and `flutter322`, instead of using `flutter` directly. `flutter` in Nixpkgs always points to `flutterPackages.stable`, which is the latest packaged version. To avoid unforeseen breakage during upgrade, packages in Nixpkgs should use a specific flutter version, such as `flutter319` and `flutter322`, instead of using `flutter` directly.
```nix ```nix
{ flutter322, fetchFromGitHub }: { flutter322, fetchFromGitHub }:
flutter322.buildFlutterApplication { flutter322.buildFlutterApplication {
pname = "firmware-updater"; pname = "firmware-updater";

View file

@ -90,7 +90,7 @@ buildDhallPackage {
let let
nixpkgs = builtins.fetchTarball { nixpkgs = builtins.fetchTarball {
url = "https://github.com/NixOS/nixpkgs/archive/94b2848559b12a8ed1fe433084686b2a81123c99.tar.gz"; url = "https://github.com/NixOS/nixpkgs/archive/94b2848559b12a8ed1fe433084686b2a81123c99.tar.gz";
hash = "sha256-B4Q3c6IvTLg3Q92qYa8y+i4uTaphtFdjp+Ir3QQjdN0="; hash = "sha256-B4Q3c6IvTLg3Q92qYa8y+i4uTaphtFdjp+Ir3QQjdN0=";
}; };
@ -100,15 +100,17 @@ let
overlay = self: super: { overlay = self: super: {
dhallPackages = super.dhallPackages.override (old: { dhallPackages = super.dhallPackages.override (old: {
overrides = overrides = self.lib.composeExtensions (old.overrides or (_: _: { })) dhallOverlay;
self.lib.composeExtensions (old.overrides or (_: _: {})) dhallOverlay;
}); });
}; };
pkgs = import nixpkgs { config = {}; overlays = [ overlay ]; }; pkgs = import nixpkgs {
config = { };
overlays = [ overlay ];
};
in in
pkgs pkgs
``` ```
… which we can then build using this command: … which we can then build using this command:
@ -190,8 +192,7 @@ Dhall overlay like this:
{ {
dhallOverrides = self: super: { dhallOverrides = self: super: {
# Enable source for all Dhall packages # Enable source for all Dhall packages
buildDhallPackage = buildDhallPackage = args: super.buildDhallPackage (args // { source = true; });
args: super.buildDhallPackage (args // { source = true; });
true = self.callPackage ./true.nix { }; true = self.callPackage ./true.nix { };
}; };

View file

@ -6,7 +6,7 @@ For local development, it's recommended to use nix-shell to create a dotnet envi
```nix ```nix
# shell.nix # shell.nix
with import <nixpkgs> {}; with import <nixpkgs> { };
mkShell { mkShell {
name = "dotnet-env"; name = "dotnet-env";
@ -21,15 +21,18 @@ mkShell {
It's very likely that more than one sdk will be needed on a given project. Dotnet provides several different frameworks (E.g dotnetcore, aspnetcore, etc.) as well as many versions for a given framework. Normally, dotnet is able to fetch a framework and install it relative to the executable. However, this would mean writing to the nix store in nixpkgs, which is read-only. To support the many-sdk use case, one can compose an environment using `dotnetCorePackages.combinePackages`: It's very likely that more than one sdk will be needed on a given project. Dotnet provides several different frameworks (E.g dotnetcore, aspnetcore, etc.) as well as many versions for a given framework. Normally, dotnet is able to fetch a framework and install it relative to the executable. However, this would mean writing to the nix store in nixpkgs, which is read-only. To support the many-sdk use case, one can compose an environment using `dotnetCorePackages.combinePackages`:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
mkShell { mkShell {
name = "dotnet-env"; name = "dotnet-env";
packages = [ packages = [
(with dotnetCorePackages; combinePackages [ (
sdk_8_0 with dotnetCorePackages;
sdk_9_0 combinePackages [
]) sdk_8_0
sdk_9_0
]
)
]; ];
} }
``` ```
@ -137,11 +140,19 @@ When packaging a new application, you need to fetch its dependencies. Create an
Here is an example `default.nix`, using some of the previously discussed arguments: Here is an example `default.nix`, using some of the previously discussed arguments:
```nix ```nix
{ lib, buildDotnetModule, dotnetCorePackages, ffmpeg }: {
lib,
buildDotnetModule,
dotnetCorePackages,
ffmpeg,
}:
let let
referencedProject = import ../../bar { /* ... */ }; referencedProject = import ../../bar {
in buildDotnetModule rec { # ...
};
in
buildDotnetModule rec {
pname = "someDotnetApplication"; pname = "someDotnetApplication";
version = "0.1"; version = "0.1";
@ -156,7 +167,7 @@ in buildDotnetModule rec {
dotnet-runtime = dotnetCorePackages.runtime_8_0; dotnet-runtime = dotnetCorePackages.runtime_8_0;
executables = [ "foo" ]; # This wraps "$out/lib/$pname/foo" to `$out/bin/foo`. executables = [ "foo" ]; # This wraps "$out/lib/$pname/foo" to `$out/bin/foo`.
executables = []; # Don't install any executables. executables = [ ]; # Don't install any executables.
packNupkg = true; # This packs the project as "foo-0.1.nupkg" at `$out/share`. packNupkg = true; # This packs the project as "foo-0.1.nupkg" at `$out/share`.

View file

@ -41,56 +41,58 @@ One advantage is that when `pkgs.zlib` is updated, it will automatically update
(pkgs.zlib.override { (pkgs.zlib.override {
stdenv = pkgs.emscriptenStdenv; stdenv = pkgs.emscriptenStdenv;
}).overrideAttrs }).overrideAttrs
(old: rec { (old: rec {
buildInputs = old.buildInputs ++ [ pkg-config ]; buildInputs = old.buildInputs ++ [ pkg-config ];
# we need to reset this setting! # we need to reset this setting!
env = (old.env or { }) // { NIX_CFLAGS_COMPILE = ""; }; env = (old.env or { }) // {
configurePhase = '' NIX_CFLAGS_COMPILE = "";
# FIXME: Some tests require writing at $HOME };
HOME=$TMPDIR configurePhase = ''
runHook preConfigure # FIXME: Some tests require writing at $HOME
HOME=$TMPDIR
runHook preConfigure
#export EMCC_DEBUG=2 #export EMCC_DEBUG=2
emconfigure ./configure --prefix=$out --shared emconfigure ./configure --prefix=$out --shared
runHook postConfigure runHook postConfigure
''; '';
dontStrip = true; dontStrip = true;
outputs = [ "out" ]; outputs = [ "out" ];
buildPhase = '' buildPhase = ''
emmake make emmake make
''; '';
installPhase = '' installPhase = ''
emmake make install emmake make install
''; '';
checkPhase = '' checkPhase = ''
echo "================= testing zlib using node =================" echo "================= testing zlib using node ================="
echo "Compiling a custom test" echo "Compiling a custom test"
set -x set -x
emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 test/example.c -DZ_SOLO \ emcc -O2 -s EMULATE_FUNCTION_POINTER_CASTS=1 test/example.c -DZ_SOLO \
libz.so.${old.version} -I . -o example.js libz.so.${old.version} -I . -o example.js
echo "Using node to execute the test" echo "Using node to execute the test"
${pkgs.nodejs}/bin/node ./example.js ${pkgs.nodejs}/bin/node ./example.js
set +x set +x
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "test failed for some reason" echo "test failed for some reason"
exit 1; exit 1;
else else
echo "it seems to work! very good." echo "it seems to work! very good."
fi fi
echo "================= /testing zlib using node =================" echo "================= /testing zlib using node ================="
''; '';
postPatch = pkgs.lib.optionalString pkgs.stdenv.hostPlatform.isDarwin '' postPatch = pkgs.lib.optionalString pkgs.stdenv.hostPlatform.isDarwin ''
substituteInPlace configure \ substituteInPlace configure \
--replace-fail '/usr/bin/libtool' 'ar' \ --replace-fail '/usr/bin/libtool' 'ar' \
--replace-fail 'AR="libtool"' 'AR="ar"' \ --replace-fail 'AR="libtool"' 'AR="ar"' \
--replace-fail 'ARFLAGS="-o"' 'ARFLAGS="-r"' --replace-fail 'ARFLAGS="-o"' 'ARFLAGS="-r"'
''; '';
}) })
``` ```
:::{.example #usage-2-pkgs.buildemscriptenpackage} :::{.example #usage-2-pkgs.buildemscriptenpackage}
@ -103,8 +105,21 @@ This `xmlmirror` example features an Emscripten package that is defined complete
pkgs.buildEmscriptenPackage rec { pkgs.buildEmscriptenPackage rec {
name = "xmlmirror"; name = "xmlmirror";
buildInputs = [ pkg-config autoconf automake libtool gnumake libxml2 nodejs openjdk json_c ]; buildInputs = [
nativeBuildInputs = [ pkg-config zlib ]; pkg-config
autoconf
automake
libtool
gnumake
libxml2
nodejs
openjdk
json_c
];
nativeBuildInputs = [
pkg-config
zlib
];
src = pkgs.fetchgit { src = pkgs.fetchgit {
url = "https://gitlab.com/odfplugfest/xmlmirror.git"; url = "https://gitlab.com/odfplugfest/xmlmirror.git";
@ -129,7 +144,10 @@ pkgs.buildEmscriptenPackage rec {
make -f Makefile.emEnv make -f Makefile.emEnv
''; '';
outputs = [ "out" "doc" ]; outputs = [
"out"
"doc"
];
installPhase = '' installPhase = ''
mkdir -p $out/share mkdir -p $out/share

View file

@ -96,7 +96,12 @@ Given the requirements above, the package expression would become messy quickly:
--prefix XDG_DATA_DIRS : "$out/share/gsettings-schemas/${name}" \ --prefix XDG_DATA_DIRS : "$out/share/gsettings-schemas/${name}" \
--prefix XDG_DATA_DIRS : "${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}" \ --prefix XDG_DATA_DIRS : "${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}" \
--prefix XDG_DATA_DIRS : "${hicolor-icon-theme}/share" \ --prefix XDG_DATA_DIRS : "${hicolor-icon-theme}/share" \
--prefix GI_TYPELIB_PATH : "${lib.makeSearchPath "lib/girepository-1.0" [ pango json-glib ]}" --prefix GI_TYPELIB_PATH : "${
lib.makeSearchPath "lib/girepository-1.0" [
pango
json-glib
]
}"
done done
''; '';
} }

View file

@ -21,7 +21,10 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-ciKotTHSEcITfQYKFZ6sY2LZnXGChBJy0+eno8B3YHY="; hash = "sha256-ciKotTHSEcITfQYKFZ6sY2LZnXGChBJy0+eno8B3YHY=";
}; };
nativeBuildInputs = [ gradle makeWrapper ]; nativeBuildInputs = [
gradle
makeWrapper
];
# if the package has dependencies, mitmCache must be set # if the package has dependencies, mitmCache must be set
mitmCache = gradle.fetchDeps { mitmCache = gradle.fetchDeps {
@ -72,11 +75,12 @@ The first is to add the derivation arguments required for getting the
package. Using the pdftk example above: package. Using the pdftk example above:
```nix ```nix
{ lib {
, stdenv lib,
, gradle stdenv,
# ... gradle,
, pdftk # ...
pdftk,
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {

View file

@ -25,7 +25,8 @@ The following attributes are accepted by `hareHook`:
hareHook, hareHook,
lib, lib,
stdenv, stdenv,
}: stdenv.mkDerivation { }:
stdenv.mkDerivation {
pname = "<name>"; pname = "<name>";
version = "<version>"; version = "<version>";
src = "<src>"; src = "<src>";

View file

@ -487,7 +487,7 @@ so:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
inherit (pkgs) haskell; inherit (pkgs) haskell;
inherit (haskell.lib.compose) overrideCabal; inherit (haskell.lib.compose) overrideCabal;
@ -511,7 +511,7 @@ let
previousIntermediates = turtle-full-build-with-incremental-output.intermediates; previousIntermediates = turtle-full-build-with-incremental-output.intermediates;
}) turtle; }) turtle;
in in
turtle-incremental-build turtle-incremental-build
``` ```
## Development environments {#haskell-development-environments} ## Development environments {#haskell-development-environments}
@ -590,7 +590,9 @@ that:
```nix ```nix
# Retrieve nixpkgs impurely from NIX_PATH for now, you can pin it instead, of course. # Retrieve nixpkgs impurely from NIX_PATH for now, you can pin it instead, of course.
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
# use the nixpkgs default haskell package set # use the nixpkgs default haskell package set
pkgs.haskellPackages.callPackage ./my-project.nix { } pkgs.haskellPackages.callPackage ./my-project.nix { }
@ -654,7 +656,9 @@ Say our example above depends on `distribution-nixpkgs` and we have a project
file set up for both, we can add the following `shell.nix` expression: file set up for both, we can add the following `shell.nix` expression:
```nix ```nix
{ pkgs ? import <nixpkgs> {} }: {
pkgs ? import <nixpkgs> { },
}:
pkgs.haskellPackages.shellFor { pkgs.haskellPackages.shellFor {
packages = hpkgs: [ packages = hpkgs: [
@ -703,7 +707,12 @@ linked to work reliably. You can override the list of supported GHC versions
with e.g. with e.g.
```nix ```nix
pkgs.haskell-language-server.override { supportedGhcVersions = [ "90" "94" ]; } pkgs.haskell-language-server.override {
supportedGhcVersions = [
"90"
"94"
];
}
``` ```
Where all strings `version` are allowed such that Where all strings `version` are allowed such that
`haskell.packages.ghc${version}` is an existing package set. `haskell.packages.ghc${version}` is an existing package set.
@ -886,11 +895,9 @@ for this to work.
derivation: derivation:
```nix ```nix
pkgs.haskell.lib.overrideCabal pkgs.haskell.lib.overrideCabal (pkgs.haskell.lib.justStaticExecutables my-haskell-package) (drv: {
(pkgs.haskell.lib.justStaticExecutables my-haskell-package) disallowGhcReference = false;
(drv: { })
disallowGhcReference = false;
})
``` ```
Then use `strings` to determine which libraries are responsible: Then use `strings` to determine which libraries are responsible:
@ -906,14 +913,12 @@ for this to work.
Finally, use `remove-references-to` to delete those store paths from the produced output: Finally, use `remove-references-to` to delete those store paths from the produced output:
```nix ```nix
pkgs.haskell.lib.overrideCabal pkgs.haskell.lib.overrideCabal (pkgs.haskell.lib.justStaticExecutables my-haskell-package) (drv: {
(pkgs.haskell.lib.justStaticExecutables my-haskell-package) postInstall = ''
(drv: { ${drv.postInstall or ""}
postInstall = '' remove-references-to -t ${pkgs.haskellPackages.hs-opentelemetry-sdk}
${drv.postInstall or ""} '';
remove-references-to -t ${pkgs.haskellPackages.hs-opentelemetry-sdk} })
'';
})
``` ```
[164630]: https://github.com/NixOS/nixpkgs/issues/164630 [164630]: https://github.com/NixOS/nixpkgs/issues/164630
@ -1122,12 +1127,20 @@ Haskell packages using [import from derivation][import-from-derivation].
```nix ```nix
# cabal get mtl-2.2.1 && cd mtl-2.2.1 && cabal2nix . # cabal get mtl-2.2.1 && cd mtl-2.2.1 && cabal2nix .
{ mkDerivation, base, lib, transformers }: {
mkDerivation,
base,
lib,
transformers,
}:
mkDerivation { mkDerivation {
pname = "mtl"; pname = "mtl";
version = "2.2.1"; version = "2.2.1";
src = ./.; src = ./.;
libraryHaskellDepends = [ base transformers ]; libraryHaskellDepends = [
base
transformers
];
homepage = "http://github.com/ekmett/mtl"; homepage = "http://github.com/ekmett/mtl";
description = "Monad classes, using functional dependencies"; description = "Monad classes, using functional dependencies";
license = lib.licenses.bsd3; license = lib.licenses.bsd3;
@ -1274,60 +1287,69 @@ in
# recommended to only use such an overlay if you are enabling profiling on a # recommended to only use such an overlay if you are enabling profiling on a
# platform that doesn't by default, because compiling GHC from scratch is # platform that doesn't by default, because compiling GHC from scratch is
# quite expensive. # quite expensive.
(final: prev: (
let final: prev:
inherit (final) lib; let
in inherit (final) lib;
in
{ {
haskell = prev.haskell // { haskell = prev.haskell // {
compiler = prev.haskell.compiler // { compiler = prev.haskell.compiler // {
${ghcName} = prev.haskell.compiler.${ghcName}.override { ${ghcName} = prev.haskell.compiler.${ghcName}.override {
# Unfortunately, the GHC setting is named differently for historical reasons # Unfortunately, the GHC setting is named differently for historical reasons
enableProfiledLibs = enableProfiling; enableProfiledLibs = enableProfiling;
};
};
};
})
(final: prev:
let
inherit (final) lib;
haskellLib = final.haskell.lib.compose;
in
{
haskell = prev.haskell // {
packages = prev.haskell.packages // {
${ghcName} = prev.haskell.packages.${ghcName}.override {
overrides = hfinal: hprev: {
mkDerivation = args: hprev.mkDerivation (args // {
# Since we are forcing our ideas upon mkDerivation, this change will
# affect every package in the package set.
enableLibraryProfiling = enableProfiling;
# To actually use profiling on an executable, executable profiling
# needs to be enabled for the executable you want to profile. You
# can either do this globally or…
enableExecutableProfiling = enableProfiling;
});
# …only for the package that contains an executable you want to profile.
# That saves on unnecessary rebuilds for packages that you only depend
# on for their library, but also contain executables (e.g. pandoc).
my-executable = haskellLib.enableExecutableProfiling hprev.my-executable;
# If you are disabling profiling to save on build time, but want to
# retain the ability to substitute from the binary cache. Drop the
# override for mkDerivation above and instead have an override like
# this for the specific packages you are building locally and want
# to make cheaper to build.
my-library = haskellLib.disableLibraryProfiling hprev.my-library;
}; };
}; };
}; };
}; }
}) )
(
final: prev:
let
inherit (final) lib;
haskellLib = final.haskell.lib.compose;
in
{
haskell = prev.haskell // {
packages = prev.haskell.packages // {
${ghcName} = prev.haskell.packages.${ghcName}.override {
overrides = hfinal: hprev: {
mkDerivation =
args:
hprev.mkDerivation (
args
// {
# Since we are forcing our ideas upon mkDerivation, this change will
# affect every package in the package set.
enableLibraryProfiling = enableProfiling;
# To actually use profiling on an executable, executable profiling
# needs to be enabled for the executable you want to profile. You
# can either do this globally or…
enableExecutableProfiling = enableProfiling;
}
);
# …only for the package that contains an executable you want to profile.
# That saves on unnecessary rebuilds for packages that you only depend
# on for their library, but also contain executables (e.g. pandoc).
my-executable = haskellLib.enableExecutableProfiling hprev.my-executable;
# If you are disabling profiling to save on build time, but want to
# retain the ability to substitute from the binary cache. Drop the
# override for mkDerivation above and instead have an override like
# this for the specific packages you are building locally and want
# to make cheaper to build.
my-library = haskellLib.disableLibraryProfiling hprev.my-library;
};
};
};
};
}
)
] ]
``` ```

View file

@ -22,10 +22,16 @@ $ nix-shell -p "hy.withPackages (ps: with ps; [ numpy matplotlib ])"
Or if you want to extend your `configuration.nix`: Or if you want to extend your `configuration.nix`:
```nix ```nix
{ # ... {
# ...
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(hy.withPackages (py-packages: with py-packages; [ numpy matplotlib ])) (hy.withPackages (
py-packages: with py-packages; [
numpy
matplotlib
]
))
]; ];
} }
``` ```

View file

@ -12,7 +12,12 @@ This however only provides the `prelude` and `base` libraries. To install idris
```nix ```nix
self: super: { self: super: {
myIdris = with self.idrisPackages; with-packages [ contrib pruviloj ]; myIdris =
with self.idrisPackages;
with-packages [
contrib
pruviloj
];
} }
``` ```
@ -68,13 +73,14 @@ prelude
As an example of how a Nix expression for an Idris package can be created, here is the one for `idrisPackages.yaml`: As an example of how a Nix expression for an Idris package can be created, here is the one for `idrisPackages.yaml`:
```nix ```nix
{ lib {
, build-idris-package lib,
, fetchFromGitHub build-idris-package,
, contrib fetchFromGitHub,
, lightyear contrib,
lightyear,
}: }:
build-idris-package { build-idris-package {
name = "yaml"; name = "yaml";
version = "2018-01-25"; version = "2018-01-25";
@ -84,7 +90,10 @@ build-idris-package {
# different from its package name here. # different from its package name here.
ipkgName = "Yaml"; ipkgName = "Yaml";
# Idris dependencies to provide for the build # Idris dependencies to provide for the build
idrisDeps = [ contrib lightyear ]; idrisDeps = [
contrib
lightyear
];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Heather"; owner = "Heather";
@ -111,10 +120,10 @@ $ nix-build -E '(import <nixpkgs> {}).idrisPackages.callPackage ./yaml.nix {}'
Or it's possible to use Or it's possible to use
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
{ {
yaml = idrisPackages.callPackage ./yaml.nix {}; yaml = idrisPackages.callPackage ./yaml.nix { };
} }
``` ```
@ -134,7 +143,11 @@ For example you could set
```nix ```nix
build-idris-package { build-idris-package {
idrisBuildOptions = [ "--log" "1" "--verbose" ]; idrisBuildOptions = [
"--log"
"1"
"--verbose"
];
# ... # ...
} }

View file

@ -9,39 +9,50 @@ Importantly, `buildIdris` does not create a single derivation but rather an attr
A simple example of a fully packaged library would be the [`LSP-lib`](https://github.com/idris-community/LSP-lib) found in the `idris-community` GitHub organization. A simple example of a fully packaged library would be the [`LSP-lib`](https://github.com/idris-community/LSP-lib) found in the `idris-community` GitHub organization.
```nix ```nix
{ fetchFromGitHub, idris2Packages }: { fetchFromGitHub, idris2Packages }:
let lspLibPkg = idris2Packages.buildIdris { let
ipkgName = "lsp-lib"; lspLibPkg = idris2Packages.buildIdris {
src = fetchFromGitHub { ipkgName = "lsp-lib";
owner = "idris-community"; src = fetchFromGitHub {
repo = "LSP-lib"; owner = "idris-community";
rev = "main"; repo = "LSP-lib";
hash = "sha256-EvSyMCVyiy9jDZMkXQmtwwMoLaem1GsKVFqSGNNHHmY="; rev = "main";
hash = "sha256-EvSyMCVyiy9jDZMkXQmtwwMoLaem1GsKVFqSGNNHHmY=";
};
idrisLibraries = [ ];
}; };
idrisLibraries = [ ]; in
}; lspLibPkg.library { withSource = true; }
in lspLibPkg.library { withSource = true; }
``` ```
The above results in a derivation with the installed library results (with sourcecode). The above results in a derivation with the installed library results (with sourcecode).
A slightly more involved example of a fully packaged executable would be the [`idris2-lsp`](https://github.com/idris-community/idris2-lsp) which is an Idris2 language server that uses the `LSP-lib` found above. A slightly more involved example of a fully packaged executable would be the [`idris2-lsp`](https://github.com/idris-community/idris2-lsp) which is an Idris2 language server that uses the `LSP-lib` found above.
```nix ```nix
{ callPackage, fetchFromGitHub, idris2Packages }: {
callPackage,
fetchFromGitHub,
idris2Packages,
}:
# Assuming the previous example lives in `lsp-lib.nix`: # Assuming the previous example lives in `lsp-lib.nix`:
let lspLib = callPackage ./lsp-lib.nix { }; let
inherit (idris2Packages) idris2Api; lspLib = callPackage ./lsp-lib.nix { };
lspPkg = idris2Packages.buildIdris { inherit (idris2Packages) idris2Api;
ipkgName = "idris2-lsp"; lspPkg = idris2Packages.buildIdris {
src = fetchFromGitHub { ipkgName = "idris2-lsp";
owner = "idris-community"; src = fetchFromGitHub {
repo = "idris2-lsp"; owner = "idris-community";
rev = "main"; repo = "idris2-lsp";
hash = "sha256-vQTzEltkx7uelDtXOHc6QRWZ4cSlhhm5ziOqWA+aujk="; rev = "main";
}; hash = "sha256-vQTzEltkx7uelDtXOHc6QRWZ4cSlhhm5ziOqWA+aujk=";
idrisLibraries = [idris2Api lspLib];
}; };
in lspPkg.executable idrisLibraries = [
idris2Api
lspLib
];
};
in
lspPkg.executable
``` ```
The above uses the default value of `withSource = false` for the `idris2Api` but could be modified to include that library's source by passing `(idris2Api { withSource = true; })` to `idrisLibraries` instead. `idris2Api` in the above derivation comes built in with `idris2Packages`. This library exposes many of the otherwise internal APIs of the Idris2 compiler. The above uses the default value of `withSource = false` for the `idris2Api` but could be modified to include that library's source by passing `(idris2Api { withSource = true; })` to `idrisLibraries` instead. `idris2Api` in the above derivation comes built in with `idris2Packages`. This library exposes many of the otherwise internal APIs of the Idris2 compiler.

View file

@ -29,7 +29,7 @@ Xcode.
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
xcodeenv = import ./xcodeenv { xcodeenv = import ./xcodeenv {
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
@ -63,7 +63,7 @@ executing the `xcodeenv.buildApp {}` function:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
xcodeenv = import ./xcodeenv { xcodeenv = import ./xcodeenv {
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
@ -159,7 +159,7 @@ instances:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
xcodeenv = import ./xcodeenv { xcodeenv = import ./xcodeenv {
inherit (pkgs) stdenv; inherit (pkgs) stdenv;
@ -193,7 +193,7 @@ app in the requested simulator instance:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
xcodeenv = import ./xcodeenv { xcodeenv = import ./xcodeenv {
inherit (pkgs) stdenv; inherit (pkgs) stdenv;

View file

@ -7,7 +7,9 @@ stdenv.mkDerivation {
pname = "..."; pname = "...";
version = "..."; version = "...";
src = fetchurl { /* ... */ }; src = fetchurl {
# ...
};
nativeBuildInputs = [ nativeBuildInputs = [
ant ant
@ -95,7 +97,7 @@ let
something = (pkgs.something.override { jre = my_jre; }); something = (pkgs.something.override { jre = my_jre; });
other = (pkgs.other.override { jre = my_jre; }); other = (pkgs.other.override { jre = my_jre; });
in in
<...> <...>
``` ```
You can also specify what JDK your JRE should be based on, for example You can also specify what JDK your JRE should be based on, for example
@ -122,7 +124,10 @@ OpenJDK. For instance, to use the GNU Java Compiler:
```nix ```nix
{ {
nativeBuildInputs = [ gcj ant ]; nativeBuildInputs = [
gcj
ant
];
} }
``` ```

View file

@ -117,12 +117,19 @@ After you have identified the correct system, you need to override your package
For example, `dat` requires `node-gyp-build`, so we override its expression in [pkgs/development/node-packages/overrides.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/node-packages/overrides.nix): For example, `dat` requires `node-gyp-build`, so we override its expression in [pkgs/development/node-packages/overrides.nix](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/node-packages/overrides.nix):
```nix ```nix
{ {
dat = prev.dat.override (oldAttrs: { dat = prev.dat.override (oldAttrs: {
buildInputs = [ final.node-gyp-build pkgs.libtool pkgs.autoconf pkgs.automake ]; buildInputs = [
meta = oldAttrs.meta // { broken = since "12"; }; final.node-gyp-build
}); pkgs.libtool
} pkgs.autoconf
pkgs.automake
];
meta = oldAttrs.meta // {
broken = since "12";
};
});
}
``` ```
### Adding and Updating Javascript packages in nixpkgs {#javascript-adding-or-updating-packages} ### Adding and Updating Javascript packages in nixpkgs {#javascript-adding-or-updating-packages}
@ -185,7 +192,11 @@ It works by utilizing npm's cache functionality -- creating a reproducible cache
Here's an example: Here's an example:
```nix ```nix
{ lib, buildNpmPackage, fetchFromGitHub }: {
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec { buildNpmPackage rec {
pname = "flood"; pname = "flood";
@ -323,7 +334,9 @@ buildNpmPackage {
npmRoot = ./.; npmRoot = ./.;
fetcherOpts = { fetcherOpts = {
# Pass 'curlOptsList' to 'pkgs.fetchurl' while fetching 'axios' # Pass 'curlOptsList' to 'pkgs.fetchurl' while fetching 'axios'
"node_modules/axios" = { curlOptsList = [ "--verbose" ]; }; "node_modules/axios" = {
curlOptsList = [ "--verbose" ];
};
}; };
}; };
@ -403,7 +416,7 @@ When packaging an application that includes a `pnpm-lock.yaml`, you need to fetc
stdenv, stdenv,
nodejs, nodejs,
# This is pinned as { pnpm = pnpm_9; } # This is pinned as { pnpm = pnpm_9; }
pnpm pnpm,
}: }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
@ -491,12 +504,12 @@ For example:
```nix ```nix
{ {
# ... # ...
pnpmWorkspaces = [ "@astrojs/language-server" ]; pnpmWorkspaces = [ "@astrojs/language-server" ];
pnpmDeps = pnpm.fetchDeps { pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) pnpmWorkspaces; inherit (finalAttrs) pnpmWorkspaces;
#... #...
}; };
} }
``` ```
@ -507,13 +520,13 @@ Usually in such cases, you'd want to use `pnpm --filter=<pnpm workspace name> bu
```nix ```nix
{ {
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild
pnpm --filter=@astrojs/language-server build pnpm --filter=@astrojs/language-server build
runHook postBuild runHook postBuild
''; '';
} }
``` ```
@ -524,13 +537,13 @@ set `prePnpmInstall` to the right commands to run. For example:
```nix ```nix
{ {
prePnpmInstall = '' prePnpmInstall = ''
pnpm config set dedupe-peer-dependants false pnpm config set dedupe-peer-dependants false
''; '';
pnpmDeps = pnpm.fetchDeps { pnpmDeps = pnpm.fetchDeps {
inherit (finalAttrs) prePnpmInstall; inherit (finalAttrs) prePnpmInstall;
# ... # ...
}; };
} }
``` ```
@ -690,7 +703,11 @@ To fix this we will specify different versions of build inputs to use, as well a
mkYarnPackage rec { mkYarnPackage rec {
pkgConfig = { pkgConfig = {
node-sass = { node-sass = {
buildInputs = with final;[ python libsass pkg-config ]; buildInputs = with final; [
python
libsass
pkg-config
];
postInstall = '' postInstall = ''
LIBSASS_EXT=auto yarn --offline run build LIBSASS_EXT=auto yarn --offline run build
rm build/config.gypi rm build/config.gypi

View file

@ -19,7 +19,7 @@ This function accepts a list of strings representing Julia package names.
For example, you can build a Julia environment with the `Plots` package as follows. For example, you can build a Julia environment with the `Plots` package as follows.
```nix ```nix
julia.withPackages ["Plots"] julia.withPackages [ "Plots" ]
``` ```
Arguments can be passed using `.override`. Arguments can be passed using `.override`.
@ -28,7 +28,8 @@ For example:
```nix ```nix
(julia.withPackages.override { (julia.withPackages.override {
precompile = false; # Turn off precompilation precompile = false; # Turn off precompilation
}) ["Plots"] })
[ "Plots" ]
``` ```
Here's a nice way to run a Julia environment with a shell one-liner: Here's a nice way to run a Julia environment with a shell one-liner:

View file

@ -48,7 +48,8 @@ Also one can create a `pkgs.mkShell` environment in `shell.nix`/`flake.nix`:
```nix ```nix
let let
sbcl' = sbcl.withPackages (ps: [ ps.alexandria ]); sbcl' = sbcl.withPackages (ps: [ ps.alexandria ]);
in mkShell { in
mkShell {
packages = [ sbcl' ]; packages = [ sbcl' ];
} }
``` ```
@ -188,10 +189,13 @@ let
hash = "sha256-1Hzxt65dZvgOFIljjjlSGgKYkj+YBLwJCACi5DZsKmQ="; hash = "sha256-1Hzxt65dZvgOFIljjjlSGgKYkj+YBLwJCACi5DZsKmQ=";
}; };
}; };
sbcl' = sbcl.withOverrides (self: super: { sbcl' = sbcl.withOverrides (
inherit alexandria; self: super: {
}); inherit alexandria;
in sbcl'.pkgs.alexandria }
);
in
sbcl'.pkgs.alexandria
``` ```
## Overriding package attributes {#lisp-overriding-package-attributes} ## Overriding package attributes {#lisp-overriding-package-attributes}
@ -296,6 +300,9 @@ This example wraps CLISP:
wrapLisp { wrapLisp {
pkg = clisp; pkg = clisp;
faslExt = "fas"; faslExt = "fas";
flags = ["-E" "UTF8"]; flags = [
"-E"
"UTF8"
];
} }
``` ```

View file

@ -27,9 +27,14 @@ Note that nixpkgs patches the non-luajit interpreters to avoid referring to
Create a file, e.g. `build.nix`, with the following expression Create a file, e.g. `build.nix`, with the following expression
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
lua5_2.withPackages (ps: with ps; [ busted luafilesystem ]) lua5_2.withPackages (
ps: with ps; [
busted
luafilesystem
]
)
``` ```
and install it in your profile with and install it in your profile with
@ -46,11 +51,18 @@ If you prefer to, you could also add the environment as a package override to th
using `config.nix`, using `config.nix`,
```nix ```nix
{ # ... {
# ...
packageOverrides = pkgs: with pkgs; { packageOverrides =
myLuaEnv = lua5_2.withPackages (ps: with ps; [ busted luafilesystem ]); pkgs: with pkgs; {
}; myLuaEnv = lua5_2.withPackages (
ps: with ps; [
busted
luafilesystem
]
);
};
} }
``` ```
@ -67,10 +79,16 @@ the `nixpkgs` channel was used.
For the sake of completeness, here's another example how to install the environment system-wide. For the sake of completeness, here's another example how to install the environment system-wide.
```nix ```nix
{ # ... {
# ...
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(lua.withPackages(ps: with ps; [ busted luafilesystem ])) (lua.withPackages (
ps: with ps; [
busted
luafilesystem
]
))
]; ];
} }
``` ```
@ -80,13 +98,12 @@ For the sake of completeness, here's another example how to install the environm
Use the following overlay template: Use the following overlay template:
```nix ```nix
final: prev: final: prev: {
{
lua = prev.lua.override { lua = prev.lua.override {
packageOverrides = luaself: luaprev: { packageOverrides = luaself: luaprev: {
luarocks-nix = luaprev.luarocks-nix.overrideAttrs(oa: { luarocks-nix = luaprev.luarocks-nix.overrideAttrs (oa: {
pname = "luarocks-nix"; pname = "luarocks-nix";
src = /home/my_luarocks/repository; src = /home/my_luarocks/repository;
}); });
@ -159,7 +176,11 @@ within a `toLuaModule` call, for instance
```nix ```nix
{ {
mynewlib = toLuaModule ( stdenv.mkDerivation { /* ... */ }); mynewlib = toLuaModule (
stdenv.mkDerivation {
# ...
}
);
} }
``` ```
@ -194,16 +215,23 @@ The following is an example:
version = "34.0.4-1"; version = "34.0.4-1";
src = fetchurl { src = fetchurl {
url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luaposix-34.0.4-1.src.rock"; url = "https://raw.githubusercontent.com/rocks-moonscript-org/moonrocks-mirror/master/luaposix-34.0.4-1.src.rock";
hash = "sha256-4mLJG8n4m6y4Fqd0meUDfsOb9RHSR0qa/KD5KCwrNXs="; hash = "sha256-4mLJG8n4m6y4Fqd0meUDfsOb9RHSR0qa/KD5KCwrNXs=";
}; };
disabled = (luaOlder "5.1") || (luaAtLeast "5.4"); disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ bit32 lua std_normalize ]; propagatedBuildInputs = [
bit32
lua
std_normalize
];
meta = { meta = {
homepage = "https://github.com/luaposix/luaposix/"; homepage = "https://github.com/luaposix/luaposix/";
description = "Lua bindings for POSIX"; description = "Lua bindings for POSIX";
maintainers = with lib.maintainers; [ vyp lblasc ]; maintainers = with lib.maintainers; [
vyp
lblasc
];
license.fullName = "MIT/X11"; license.fullName = "MIT/X11";
}; };
}; };
@ -242,14 +270,14 @@ The `lua.withPackages` takes a function as an argument that is passed the set of
Using the `withPackages` function, the previous example for the luafilesystem environment can be written like this: Using the `withPackages` function, the previous example for the luafilesystem environment can be written like this:
```nix ```nix
lua.withPackages (ps: [ps.luafilesystem]) lua.withPackages (ps: [ ps.luafilesystem ])
``` ```
`withPackages` passes the correct package set for the specific interpreter version as an argument to the function. In the above example, `ps` equals `luaPackages`. `withPackages` passes the correct package set for the specific interpreter version as an argument to the function. In the above example, `ps` equals `luaPackages`.
But you can also easily switch to using `lua5_1`: But you can also easily switch to using `lua5_1`:
```nix ```nix
lua5_1.withPackages (ps: [ps.lua]) lua5_1.withPackages (ps: [ ps.lua ])
``` ```
Now, `ps` is set to `lua5_1.pkgs`, matching the version of the interpreter. Now, `ps` is set to `lua5_1.pkgs`, matching the version of the interpreter.

View file

@ -9,7 +9,13 @@ The following provides a list of common patterns with how to package a Maven pro
Consider the following package: Consider the following package:
```nix ```nix
{ lib, fetchFromGitHub, jre, makeWrapper, maven }: {
lib,
fetchFromGitHub,
jre,
makeWrapper,
maven,
}:
maven.buildMavenPackage rec { maven.buildMavenPackage rec {
pname = "jd-cli"; pname = "jd-cli";
@ -246,7 +252,9 @@ This file is then given to the `buildMaven` function, and it returns 2 attribute
Here is an [example](https://github.com/fzakaria/nixos-maven-example/blob/main/build-maven-repository.nix) of building the Maven repository Here is an [example](https://github.com/fzakaria/nixos-maven-example/blob/main/build-maven-repository.nix) of building the Maven repository
```nix ```nix
{ pkgs ? import <nixpkgs> { } }: {
pkgs ? import <nixpkgs> { },
}:
with pkgs; with pkgs;
(buildMaven ./project-info.json).repo (buildMaven ./project-info.json).repo
``` ```
@ -283,7 +291,11 @@ Traditionally the Maven repository is at `~/.m2/repository`. We will override th
::: :::
```nix ```nix
{ lib, stdenv, maven }: {
lib,
stdenv,
maven,
}:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "maven-repository"; name = "maven-repository";
buildInputs = [ maven ]; buildInputs = [ maven ];
@ -337,10 +349,16 @@ If your package uses _SNAPSHOT_ dependencies or _version ranges_; there is a str
Regardless of which strategy is chosen above, the step to build the derivation is the same. Regardless of which strategy is chosen above, the step to build the derivation is the same.
```nix ```nix
{ stdenv, maven, callPackage }: {
stdenv,
maven,
callPackage,
}:
# pick a repository derivation, here we will use buildMaven # pick a repository derivation, here we will use buildMaven
let repository = callPackage ./build-maven-repository.nix { }; let
in stdenv.mkDerivation rec { repository = callPackage ./build-maven-repository.nix { };
in
stdenv.mkDerivation rec {
pname = "maven-demo"; pname = "maven-demo";
version = "1.0"; version = "1.0";
@ -393,15 +411,21 @@ We will read the Maven repository and flatten it to a single list. This list wil
We make sure to provide this classpath to the `makeWrapper`. We make sure to provide this classpath to the `makeWrapper`.
```nix ```nix
{ stdenv, maven, callPackage, makeWrapper, jre }: {
stdenv,
maven,
callPackage,
makeWrapper,
jre,
}:
let let
repository = callPackage ./build-maven-repository.nix { }; repository = callPackage ./build-maven-repository.nix { };
in stdenv.mkDerivation rec { in
stdenv.mkDerivation rec {
pname = "maven-demo"; pname = "maven-demo";
version = "1.0"; version = "1.0";
src = builtins.fetchTarball src = builtins.fetchTarball "https://github.com/fzakaria/nixos-maven-example/archive/main.tar.gz";
"https://github.com/fzakaria/nixos-maven-example/archive/main.tar.gz";
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
buildInputs = [ maven ]; buildInputs = [ maven ];
@ -471,15 +495,22 @@ Main-Class: Main
We will modify the derivation above to add a symlink to our repository so that it's accessible to our JAR during the `installPhase`. We will modify the derivation above to add a symlink to our repository so that it's accessible to our JAR during the `installPhase`.
```nix ```nix
{ stdenv, maven, callPackage, makeWrapper, jre }: {
stdenv,
maven,
callPackage,
makeWrapper,
jre,
}:
# pick a repository derivation, here we will use buildMaven # pick a repository derivation, here we will use buildMaven
let repository = callPackage ./build-maven-repository.nix { }; let
in stdenv.mkDerivation rec { repository = callPackage ./build-maven-repository.nix { };
in
stdenv.mkDerivation rec {
pname = "maven-demo"; pname = "maven-demo";
version = "1.0"; version = "1.0";
src = builtins.fetchTarball src = builtins.fetchTarball "https://github.com/fzakaria/nixos-maven-example/archive/main.tar.gz";
"https://github.com/fzakaria/nixos-maven-example/archive/main.tar.gz";
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
buildInputs = [ maven ]; buildInputs = [ maven ];

View file

@ -91,8 +91,8 @@ wrapNeovimUnstable neovim-unwrapped {
You can explore the configuration with`nix repl` to discover these options and You can explore the configuration with`nix repl` to discover these options and
override them. For instance: override them. For instance:
```nix ```nix
neovim.overrideAttrs(oldAttrs: { neovim.overrideAttrs (oldAttrs: {
autowrapRuntimeDeps = false; autowrapRuntimeDeps = false;
}) })
``` ```
@ -117,9 +117,9 @@ top-level while luarocks installs them in various subfolders by default.
For instance: For instance:
```nix ```nix
{ {
rtp-nvim = neovimUtils.buildNeovimPlugin { rtp-nvim = neovimUtils.buildNeovimPlugin {
luaAttr = luaPackages.rtp-nvim; luaAttr = luaPackages.rtp-nvim;
}; };
} }
``` ```
To update these packages, you should use the lua updater rather than vim's. To update these packages, you should use the lua updater rather than vim's.

View file

@ -7,7 +7,11 @@ Nim programs are built using a lockfile and either `buildNimPackage` or `buildNi
The following example shows a Nim program that depends only on Nim libraries: The following example shows a Nim program that depends only on Nim libraries:
```nix ```nix
{ lib, buildNimPackage, fetchFromGitHub }: {
lib,
buildNimPackage,
fetchFromGitHub,
}:
buildNimPackage (finalAttrs: { buildNimPackage (finalAttrs: {
pname = "ttop"; pname = "ttop";
@ -91,7 +95,9 @@ The `buildNimPackage` and `buildNimSbom` functions generate flags and additional
```nix ```nix
pkgs.nitter.overrideNimAttrs { pkgs.nitter.overrideNimAttrs {
# using a different source which has different dependencies from the standard package # using a different source which has different dependencies from the standard package
src = pkgs.fetchFromGithub { /* … */ }; src = pkgs.fetchFromGithub {
# …
};
# new lock file generated from the source # new lock file generated from the source
lockFile = ./custom-lock.json; lockFile = ./custom-lock.json;
} }
@ -104,21 +110,25 @@ The default overrides are maintained as the top-level `nimOverrides` attrset at
For example, to propagate a dependency on SDL2 for lockfiles that select the Nim `sdl2` library, an overlay is added to the set in the `nim-overrides.nix` file: For example, to propagate a dependency on SDL2 for lockfiles that select the Nim `sdl2` library, an overlay is added to the set in the `nim-overrides.nix` file:
```nix ```nix
{ lib {
/* … */ lib,
, SDL2 # …
/* … */ SDL2,
# …
}: }:
{ {
/* … */ # …
sdl2 = sdl2 =
lockAttrs: lockAttrs:
{ buildInputs ? [ ], ... }: {
buildInputs ? [ ],
...
}:
{ {
buildInputs = buildInputs ++ [ SDL2 ]; buildInputs = buildInputs ++ [ SDL2 ];
}; };
/* … */ # …
} }
``` ```
@ -132,22 +142,28 @@ The `nimOverrides` attrset makes it possible to modify overrides in a few differ
Override a package internal to its definition: Override a package internal to its definition:
```nix ```nix
{ lib, buildNimPackage, nimOverrides, libressl }: {
lib,
buildNimPackage,
nimOverrides,
libressl,
}:
let let
buildNimPackage' = buildNimPackage.override { buildNimPackage' = buildNimPackage.override {
nimOverrides = nimOverrides.override { openssl = libressl; }; nimOverrides = nimOverrides.override { openssl = libressl; };
}; };
in buildNimPackage' (finalAttrs: { in
buildNimPackage' (finalAttrs: {
pname = "foo"; pname = "foo";
# … # …
}) })
``` ```
Override a package externally: Override a package externally:
```nix ```nix
{ pkgs }: { { pkgs }:
{
foo = pkgs.foo.override { foo = pkgs.foo.override {
buildNimPackage = pkgs.buildNimPackage.override { buildNimPackage = pkgs.buildNimPackage.override {
nimOverrides = pkgs.nimOverrides.override { openssl = libressl; }; nimOverrides = pkgs.nimOverrides.override { openssl = libressl; };

View file

@ -12,13 +12,18 @@ To open a shell able to build a typical OCaml project, put the dependencies in `
For example: For example:
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
# choose the ocaml version you want to use # choose the ocaml version you want to use
ocamlPackages = pkgs.ocaml-ng.ocamlPackages_4_12; ocamlPackages = pkgs.ocaml-ng.ocamlPackages_4_12;
in in
pkgs.mkShell { pkgs.mkShell {
# build tools # build tools
nativeBuildInputs = with ocamlPackages; [ ocaml findlib dune_2 ocaml-lsp ]; nativeBuildInputs = with ocamlPackages; [
ocaml
findlib
dune_2
ocaml-lsp
];
# dependencies # dependencies
buildInputs = with ocamlPackages; [ ocamlgraph ]; buildInputs = with ocamlPackages; [ ocamlgraph ];
} }
@ -58,7 +63,8 @@ Here is a simple package example.
generates. generates.
```nix ```nix
{ lib, {
lib,
fetchFromGitHub, fetchFromGitHub,
buildDunePackage, buildDunePackage,
ocaml, ocaml,
@ -66,7 +72,8 @@ Here is a simple package example.
alcotest, alcotest,
result, result,
bigstringaf, bigstringaf,
ppx_let }: ppx_let,
}:
buildDunePackage rec { buildDunePackage rec {
pname = "angstrom"; pname = "angstrom";
@ -75,15 +82,21 @@ buildDunePackage rec {
minimalOCamlVersion = "4.04"; minimalOCamlVersion = "4.04";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "inhabitedtype"; owner = "inhabitedtype";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-MK8o+iPGANEhrrTc1Kz9LBilx2bDPQt7Pp5P2libucI="; hash = "sha256-MK8o+iPGANEhrrTc1Kz9LBilx2bDPQt7Pp5P2libucI=";
}; };
checkInputs = [ alcotest ppx_let ]; checkInputs = [
alcotest
ppx_let
];
buildInputs = [ ocaml-syntax-shims ]; buildInputs = [ ocaml-syntax-shims ];
propagatedBuildInputs = [ bigstringaf result ]; propagatedBuildInputs = [
bigstringaf
result
];
doCheck = lib.versionAtLeast ocaml.version "4.05"; doCheck = lib.versionAtLeast ocaml.version "4.05";
meta = { meta = {
@ -98,7 +111,11 @@ buildDunePackage rec {
Here is a second example, this time using a source archive generated with `dune-release`. It is a good idea to use this archive when it is available as it will usually contain substituted variables such as a `%%VERSION%%` field. This library does not depend on any other OCaml library and no tests are run after building it. Here is a second example, this time using a source archive generated with `dune-release`. It is a good idea to use this archive when it is available as it will usually contain substituted variables such as a `%%VERSION%%` field. This library does not depend on any other OCaml library and no tests are run after building it.
```nix ```nix
{ lib, fetchurl, buildDunePackage }: {
lib,
fetchurl,
buildDunePackage,
}:
buildDunePackage rec { buildDunePackage rec {
pname = "wtf8"; pname = "wtf8";

View file

@ -39,7 +39,9 @@ $ nix-shell -p 'octave.withPackages (ps: with ps; [ symbolic ])'
This will also work in a `shell.nix` file. This will also work in a `shell.nix` file.
```nix ```nix
{ pkgs ? import <nixpkgs> { }}: {
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell { pkgs.mkShell {
nativeBuildInputs = with pkgs; [ nativeBuildInputs = with pkgs; [

View file

@ -51,7 +51,10 @@ Note the use of `mirror://cpan/`, and the `pname` and `version` in the URL defin
```nix ```nix
{ {
foo = import ../path/to/foo.nix { foo = import ../path/to/foo.nix {
inherit stdenv fetchurl /* ... */; inherit
stdenv
fetchurl # ...
;
inherit (perlPackages) ClassC3; inherit (perlPackages) ClassC3;
}; };
} }
@ -74,7 +77,11 @@ So what does `buildPerlPackage` do? It does the following:
`buildPerlPackage` is built on top of `stdenv`, so everything can be customised in the usual way. For instance, the `BerkeleyDB` module has a `preConfigure` hook to generate a configuration file used by `Makefile.PL`: `buildPerlPackage` is built on top of `stdenv`, so everything can be customised in the usual way. For instance, the `BerkeleyDB` module has a `preConfigure` hook to generate a configuration file used by `Makefile.PL`:
```nix ```nix
{ buildPerlPackage, fetchurl, db }: {
buildPerlPackage,
fetchurl,
db,
}:
buildPerlPackage rec { buildPerlPackage rec {
pname = "BerkeleyDB"; pname = "BerkeleyDB";
@ -104,7 +111,10 @@ Dependencies on other Perl packages can be specified in the `buildInputs` and `p
hash = "sha256-ASO9rV/FzJYZ0BH572Fxm2ZrFLMZLFATJng1NuU4FHc="; hash = "sha256-ASO9rV/FzJYZ0BH572Fxm2ZrFLMZLFATJng1NuU4FHc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
ClassC3 ClassInspector TestException MROCompat ClassC3
ClassInspector
TestException
MROCompat
]; ];
}; };
} }
@ -113,7 +123,13 @@ Dependencies on other Perl packages can be specified in the `buildInputs` and `p
On Darwin, if a script has too many `-Idir` flags in its first line (its “shebang line”), it will not run. This can be worked around by calling the `shortenPerlShebang` function from the `postInstall` phase: On Darwin, if a script has too many `-Idir` flags in its first line (its “shebang line”), it will not run. This can be worked around by calling the `shortenPerlShebang` function from the `postInstall` phase:
```nix ```nix
{ lib, stdenv, buildPerlPackage, fetchurl, shortenPerlShebang }: {
lib,
stdenv,
buildPerlPackage,
fetchurl,
shortenPerlShebang,
}:
{ {
ImageExifTool = buildPerlPackage { ImageExifTool = buildPerlPackage {

View file

@ -45,24 +45,30 @@ extensions. For example, a PHP package with all default extensions and
ImageMagick enabled: ImageMagick enabled:
```nix ```nix
php.withExtensions ({ enabled, all }: php.withExtensions ({ enabled, all }: enabled ++ [ all.imagick ])
enabled ++ [ all.imagick ])
``` ```
To exclude some, but not all, of the default extensions, you can To exclude some, but not all, of the default extensions, you can
filter the `enabled` list like this: filter the `enabled` list like this:
```nix ```nix
php.withExtensions ({ enabled, all }: php.withExtensions (
(lib.filter (e: e != php.extensions.opcache) enabled) { enabled, all }: (lib.filter (e: e != php.extensions.opcache) enabled) ++ [ all.imagick ]
++ [ all.imagick ]) )
``` ```
To build your list of extensions from the ground up, you can To build your list of extensions from the ground up, you can
ignore `enabled`: ignore `enabled`:
```nix ```nix
php.withExtensions ({ all, ... }: with all; [ imagick opcache ]) php.withExtensions (
{ all, ... }:
with all;
[
imagick
opcache
]
)
``` ```
`php.withExtensions` provides extensions by wrapping a minimal php `php.withExtensions` provides extensions by wrapping a minimal php
@ -82,7 +88,13 @@ and ImageMagick extensions enabled, and `memory_limit` set to `256M`:
```nix ```nix
php.buildEnv { php.buildEnv {
extensions = { all, ... }: with all; [ imagick opcache ]; extensions =
{ all, ... }:
with all;
[
imagick
opcache
];
extraConfig = "memory_limit=256M"; extraConfig = "memory_limit=256M";
} }
``` ```
@ -94,8 +106,16 @@ follows:
```nix ```nix
let let
myPhp = php.withExtensions ({ all, ... }: with all; [ imagick opcache ]); myPhp = php.withExtensions (
in { { all, ... }:
with all;
[
imagick
opcache
]
);
in
{
services.phpfpm.pools."foo".phpPackage = myPhp; services.phpfpm.pools."foo".phpPackage = myPhp;
} }
``` ```
@ -103,10 +123,17 @@ in {
```nix ```nix
let let
myPhp = php.buildEnv { myPhp = php.buildEnv {
extensions = { all, ... }: with all; [ imagick opcache ]; extensions =
{ all, ... }:
with all;
[
imagick
opcache
];
extraConfig = "memory_limit=256M"; extraConfig = "memory_limit=256M";
}; };
in { in
{
services.phpfpm.pools."foo".phpPackage = myPhp; services.phpfpm.pools."foo".phpPackage = myPhp;
} }
``` ```
@ -132,9 +159,14 @@ won't work with that project unless those extensions are loaded.
Example of building `composer` with additional extensions: Example of building `composer` with additional extensions:
```nix ```nix
(php.withExtensions ({ all, enabled }: (php.withExtensions (
enabled ++ (with all; [ imagick redis ])) { all, enabled }:
).packages.composer enabled
++ (with all; [
imagick
redis
])
)).packages.composer
``` ```
### Overriding PHP packages {#ssec-php-user-guide-overriding-packages} ### Overriding PHP packages {#ssec-php-user-guide-overriding-packages}
@ -148,7 +180,7 @@ php.override {
packageOverrides = final: prev: { packageOverrides = final: prev: {
extensions = prev.extensions // { extensions = prev.extensions // {
mysqlnd = prev.extensions.mysqlnd.overrideAttrs (attrs: { mysqlnd = prev.extensions.mysqlnd.overrideAttrs (attrs: {
patches = attrs.patches or [] ++ [ patches = attrs.patches or [ ] ++ [
# ... # ...
]; ];
}); });
@ -235,9 +267,13 @@ php.buildComposerProject (finalAttrs: {
# PHP version containing the `ast` extension enabled # PHP version containing the `ast` extension enabled
php = php.buildEnv { php = php.buildEnv {
extensions = ({ enabled, all }: enabled ++ (with all; [ extensions = (
ast { enabled, all }:
])); enabled
++ (with all; [
ast
])
);
}; };
# The composer vendor hash # The composer vendor hash
@ -259,38 +295,45 @@ Here's a working code example to build a PHP library using `mkDerivation` and
separate functions and hooks: separate functions and hooks:
```nix ```nix
{ stdenvNoCC, fetchFromGitHub, php }: {
stdenvNoCC,
fetchFromGitHub,
php,
}:
stdenvNoCC.mkDerivation (finalAttrs: stdenvNoCC.mkDerivation (
let finalAttrs:
src = fetchFromGitHub { let
owner = "git-owner"; src = fetchFromGitHub {
repo = "git-repo"; owner = "git-owner";
rev = finalAttrs.version; repo = "git-repo";
hash = "sha256-VcQRSss2dssfkJ+iUb5qT+FJ10GHiFDzySigcmuVI+8="; rev = finalAttrs.version;
}; hash = "sha256-VcQRSss2dssfkJ+iUb5qT+FJ10GHiFDzySigcmuVI+8=";
in { };
inherit src; in
pname = "php-app"; {
version = "1.0.0"; inherit src;
pname = "php-app";
version = "1.0.0";
buildInputs = [ php ]; buildInputs = [ php ];
nativeBuildInputs = [ nativeBuildInputs = [
php.packages.composer php.packages.composer
# This hook will use the attribute `composerRepository` # This hook will use the attribute `composerRepository`
php.composerHooks.composerInstallHook php.composerHooks.composerInstallHook
]; ];
composerRepository = php.mkComposerRepository { composerRepository = php.mkComposerRepository {
inherit (finalAttrs) pname version src; inherit (finalAttrs) pname version src;
composerNoDev = true; composerNoDev = true;
composerNoPlugins = true; composerNoPlugins = true;
composerNoScripts = true; composerNoScripts = true;
# Specifying a custom composer.lock since it is not present in the sources. # Specifying a custom composer.lock since it is not present in the sources.
composerLock = ./composer.lock; composerLock = ./composer.lock;
# The composer vendor hash # The composer vendor hash
vendorHash = "sha256-86s/F+/5cBAwBqZ2yaGRM5rTGLmou5//aLRK5SA0WiQ="; vendorHash = "sha256-86s/F+/5cBAwBqZ2yaGRM5rTGLmou5//aLRK5SA0WiQ=";
}; };
}) }
)
``` ```

View file

@ -17,9 +17,12 @@ A good example of all these things is miniz:
{ pkg-config, testers, ... }: { pkg-config, testers, ... }:
stdenv.mkDerivation (finalAttrs: { stdenv.mkDerivation (finalAttrs: {
/* ... */ # ...
nativeBuildInputs = [ pkg-config validatePkgConfig ]; nativeBuildInputs = [
pkg-config
validatePkgConfig
];
passthru.tests.pkg-config = testers.hasPkgConfigModules { passthru.tests.pkg-config = testers.hasPkgConfigModules {
package = finalAttrs.finalPackage; package = finalAttrs.finalPackage;
@ -27,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: {
}; };
meta = { meta = {
/* ... */ # ...
pkgConfigModules = [ "miniz" ]; pkgConfigModules = [ "miniz" ];
}; };
}) })

View file

@ -78,24 +78,25 @@ using setup hooks.
The following is an example: The following is an example:
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
fetchPypi,
# build-system # build-system
, setuptools setuptools,
, setuptools-scm setuptools-scm,
# dependencies # dependencies
, attrs attrs,
, pluggy pluggy,
, py py,
, setuptools setuptools,
, six six,
# tests # tests
, hypothesis hypothesis,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "pytest"; pname = "pytest";
@ -134,7 +135,12 @@ buildPythonPackage rec {
description = "Framework for writing tests"; description = "Framework for writing tests";
homepage = "https://github.com/pytest-dev/pytest"; homepage = "https://github.com/pytest-dev/pytest";
license = lib.licenses.mit; license = lib.licenses.mit;
maintainers = with lib.maintainers; [ domenkozar lovek323 madjar lsix ]; maintainers = with lib.maintainers; [
domenkozar
lovek323
madjar
lsix
];
}; };
} }
``` ```
@ -231,23 +237,31 @@ override first the Python interpreter and pass `packageOverrides` which contains
the overrides for packages in the package set. the overrides for packages in the package set.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
(let (
python = let let
packageOverrides = self: super: { python =
pandas = super.pandas.overridePythonAttrs(old: rec { let
version = "0.19.1"; packageOverrides = self: super: {
src = fetchPypi { pandas = super.pandas.overridePythonAttrs (old: rec {
pname = "pandas"; version = "0.19.1";
inherit version; src = fetchPypi {
hash = "sha256-JQn+rtpy/OA2deLszSKEuxyttqBzcAil50H+JDHUdCE="; pname = "pandas";
inherit version;
hash = "sha256-JQn+rtpy/OA2deLszSKEuxyttqBzcAil50H+JDHUdCE=";
};
});
}; };
}); in
}; pkgs.python3.override {
in pkgs.python3.override {inherit packageOverrides; self = python;}; inherit packageOverrides;
self = python;
};
in python.withPackages(ps: [ ps.blaze ])).env in
python.withPackages (ps: [ ps.blaze ])
).env
``` ```
The next example shows a non trivial overriding of the `blas` implementation to The next example shows a non trivial overriding of the `blas` implementation to
@ -258,12 +272,16 @@ be used through out all of the Python package set:
python3MyBlas = pkgs.python3.override { python3MyBlas = pkgs.python3.override {
packageOverrides = self: super: { packageOverrides = self: super: {
# We need toPythonModule for the package set to evaluate this # We need toPythonModule for the package set to evaluate this
blas = super.toPythonModule(super.pkgs.blas.override { blas = super.toPythonModule (
blasProvider = super.pkgs.mkl; super.pkgs.blas.override {
}); blasProvider = super.pkgs.mkl;
lapack = super.toPythonModule(super.pkgs.lapack.override { }
lapackProvider = super.pkgs.mkl; );
}); lapack = super.toPythonModule (
super.pkgs.lapack.override {
lapackProvider = super.pkgs.mkl;
}
);
}; };
}; };
} }
@ -290,9 +308,10 @@ called with `callPackage` and passed `python3` or `python3Packages` (possibly
specifying an interpreter version), like this: specifying an interpreter version), like this:
```nix ```nix
{ lib {
, python3Packages lib,
, fetchPypi python3Packages,
fetchPypi,
}: }:
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
@ -302,7 +321,7 @@ python3Packages.buildPythonApplication rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-Pe229rT0aHwA98s+nTHQMEFKZPo/yw6sot8MivFDvAw="; hash = "sha256-Pe229rT0aHwA98s+nTHQMEFKZPo/yw6sot8MivFDvAw=";
}; };
build-system = with python3Packages; [ build-system = with python3Packages; [
@ -356,10 +375,12 @@ modifications.
```nix ```nix
{ {
opencv = toPythonModule (pkgs.opencv.override { opencv = toPythonModule (
enablePython = true; pkgs.opencv.override {
pythonPackages = self; enablePython = true;
}); pythonPackages = self;
}
);
} }
``` ```
@ -394,8 +415,10 @@ The `build-system`'s provided will instead become runtime dependencies of the ed
Note that overriding packages deeper in the dependency graph _can_ work, but it's not the primary use case and overriding existing packages can make others break in unexpected ways. Note that overriding packages deeper in the dependency graph _can_ work, but it's not the primary use case and overriding existing packages can make others break in unexpected ways.
``` nix ```nix
{ pkgs ? import <nixpkgs> { } }: {
pkgs ? import <nixpkgs> { },
}:
let let
pyproject = pkgs.lib.importTOML ./pyproject.toml; pyproject = pkgs.lib.importTOML ./pyproject.toml;
@ -418,9 +441,10 @@ let
}; };
}; };
pythonEnv = myPython.withPackages (ps: [ ps.my-editable ]); pythonEnv = myPython.withPackages (ps: [ ps.my-editable ]);
in pkgs.mkShell { in
pkgs.mkShell {
packages = [ pythonEnv ]; packages = [ pythonEnv ];
} }
``` ```
@ -432,7 +456,7 @@ This example shows how to create an environment that has the Pyramid Web Framewo
Saving the following as `default.nix` Saving the following as `default.nix`
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
python3.buildEnv.override { python3.buildEnv.override {
extraLibs = [ python3Packages.pyramid ]; extraLibs = [ python3Packages.pyramid ];
@ -453,7 +477,7 @@ packages installed. This is somewhat comparable to `virtualenv`. For example,
running `nix-shell` with the following `shell.nix` running `nix-shell` with the following `shell.nix`
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
(python3.buildEnv.override { (python3.buildEnv.override {
extraLibs = with python3Packages; [ extraLibs = with python3Packages; [
@ -483,7 +507,7 @@ of the packages to be included in the environment. Using the [`withPackages`](#p
example for the Pyramid Web Framework environment can be written like this: example for the Pyramid Web Framework environment can be written like this:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
python.withPackages (ps: [ ps.pyramid ]) python.withPackages (ps: [ ps.pyramid ])
``` ```
@ -493,7 +517,7 @@ version as an argument to the function. In the above example, `ps` equals
`pythonPackages`. But you can also easily switch to using python3: `pythonPackages`. But you can also easily switch to using python3:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
python3.withPackages (ps: [ ps.pyramid ]) python3.withPackages (ps: [ ps.pyramid ])
``` ```
@ -505,12 +529,14 @@ supports the `env` attribute. The `shell.nix` file from the previous section can
thus be also written like this: thus be also written like this:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
(python3.withPackages (ps: with ps; [ (python3.withPackages (
numpy ps: with ps; [
requests numpy
])).env requests
]
)).env
``` ```
In contrast to [`python.buildEnv`](#python.buildenv-function), [`python.withPackages`](#python.withpackages-function) does not support the In contrast to [`python.buildEnv`](#python.buildenv-function), [`python.withPackages`](#python.withpackages-function) does not support the
@ -758,11 +784,13 @@ Say we want to have Python 3.12, `numpy` and `toolz`, like before,
in an environment. We can add a `shell.nix` file describing our dependencies: in an environment. We can add a `shell.nix` file describing our dependencies:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
(python312.withPackages (ps: with ps; [ (python312.withPackages (
numpy ps: with ps; [
toolz numpy
])).env toolz
]
)).env
``` ```
And then at the command line, just typing `nix-shell` produces the same And then at the command line, just typing `nix-shell` produces the same
@ -785,13 +813,14 @@ What's happening here?
To combine this with `mkShell` you can: To combine this with `mkShell` you can:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
let let
pythonEnv = python312.withPackages (ps: [ pythonEnv = python312.withPackages (ps: [
ps.numpy ps.numpy
ps.toolz ps.toolz
]); ]);
in mkShell { in
mkShell {
packages = [ packages = [
pythonEnv pythonEnv
@ -868,10 +897,16 @@ For the sake of completeness, here's how to install the environment system-wide
on NixOS. on NixOS.
```nix ```nix
{ # ... {
# ...
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
(python310.withPackages(ps: with ps; [ numpy toolz ])) (python310.withPackages (
ps: with ps; [
numpy
toolz
]
))
]; ];
} }
``` ```
@ -891,10 +926,11 @@ building Python libraries is [`buildPythonPackage`](#buildpythonpackage-function
`toolz` package. `toolz` package.
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, setuptools fetchPypi,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -952,9 +988,10 @@ The following expression creates a derivation for the `toolz` package,
and adds it along with a `numpy` package to a Python environment. and adds it along with a `numpy` package to a Python environment.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
( let (
let
my_toolz = python312.pkgs.buildPythonPackage rec { my_toolz = python312.pkgs.buildPythonPackage rec {
pname = "toolz"; pname = "toolz";
version = "0.10.0"; version = "0.10.0";
@ -979,10 +1016,13 @@ with import <nixpkgs> {};
}; };
}; };
in python312.withPackages (ps: with ps; [ in
numpy python312.withPackages (
my_toolz ps: with ps; [
]) numpy
my_toolz
]
)
).env ).env
``` ```
@ -1014,18 +1054,21 @@ The following example shows which arguments are given to [`buildPythonPackage`](
order to build [`datashape`](https://github.com/blaze/datashape). order to build [`datashape`](https://github.com/blaze/datashape).
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
fetchPypi,
# build dependencies # build dependencies
, setuptools setuptools,
# dependencies # dependencies
, numpy, multipledispatch, python-dateutil numpy,
multipledispatch,
python-dateutil,
# tests # tests
, pytestCheckHook pytestCheckHook,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -1072,12 +1115,13 @@ Python bindings to `libxml2` and `libxslt`. These libraries are only required
when building the bindings and are therefore added as [`buildInputs`](#var-stdenv-buildInputs). when building the bindings and are therefore added as [`buildInputs`](#var-stdenv-buildInputs).
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, setuptools fetchPypi,
, libxml2 setuptools,
, libxslt libxml2,
libxslt,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -1128,19 +1172,20 @@ The bindings don't expect to find each of them in a different folder, and
therefore we have to set `LDFLAGS` and `CFLAGS`. therefore we have to set `LDFLAGS` and `CFLAGS`.
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
fetchPypi,
# build dependencies # build dependencies
, setuptools setuptools,
# dependencies # dependencies
, fftw fftw,
, fftwFloat fftwFloat,
, fftwLongDouble fftwLongDouble,
, numpy numpy,
, scipy scipy,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -1182,7 +1227,10 @@ buildPythonPackage rec {
changelog = "https://github.com/pyFFTW/pyFFTW/releases/tag/v${version}"; changelog = "https://github.com/pyFFTW/pyFFTW/releases/tag/v${version}";
description = "Pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms"; description = "Pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms";
homepage = "http://hgomersall.github.com/pyFFTW"; homepage = "http://hgomersall.github.com/pyFFTW";
license = with lib.licenses; [ bsd2 bsd3 ]; license = with lib.licenses; [
bsd2
bsd3
];
}; };
} }
``` ```
@ -1360,17 +1408,20 @@ This is especially helpful to select tests or specify flags conditionally:
```nix ```nix
{ {
disabledTests = [ disabledTests =
# touches network [
"download" # touches network
"update" "download"
] ++ lib.optionals (pythonAtLeast "3.8") [ "update"
# broken due to python3.8 async changes ]
"async" ++ lib.optionals (pythonAtLeast "3.8") [
] ++ lib.optionals stdenv.buildPlatform.isDarwin [ # broken due to python3.8 async changes
# can fail when building with other packages "async"
"socket" ]
]; ++ lib.optionals stdenv.buildPlatform.isDarwin [
# can fail when building with other packages
"socket"
];
} }
``` ```
@ -1495,7 +1546,9 @@ automatically add `pythonRelaxDepsHook` if either `pythonRelaxDeps` or
]; ];
unittestFlags = [ unittestFlags = [
"-s" "tests" "-v" "-s"
"tests"
"-v"
]; ];
} }
``` ```
@ -1576,10 +1629,11 @@ Let's split the package definition from the environment definition.
We first create a function that builds `toolz` in `~/path/to/toolz/release.nix` We first create a function that builds `toolz` in `~/path/to/toolz/release.nix`
```nix ```nix
{ lib {
, buildPythonPackage lib,
, fetchPypi buildPythonPackage,
, setuptools fetchPypi,
setuptools,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -1609,13 +1663,15 @@ It takes an argument [`buildPythonPackage`](#buildpythonpackage-function). We no
`callPackage` in the definition of our environment `callPackage` in the definition of our environment
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
( let (
let
toolz = callPackage /path/to/toolz/release.nix { toolz = callPackage /path/to/toolz/release.nix {
buildPythonPackage = python3Packages.buildPythonPackage; buildPythonPackage = python3Packages.buildPythonPackage;
}; };
in python3.withPackages (ps: [ in
python3.withPackages (ps: [
ps.numpy ps.numpy
toolz toolz
]) ])
@ -1643,20 +1699,27 @@ We can override the interpreter and pass `packageOverrides`. In the following
example we rename the `pandas` package and build it. example we rename the `pandas` package and build it.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
(let (
python = let let
packageOverrides = self: super: { python =
pandas = super.pandas.overridePythonAttrs(old: {name="foo";}); let
}; packageOverrides = self: super: {
in pkgs.python310.override { pandas = super.pandas.overridePythonAttrs (old: {
inherit packageOverrides; name = "foo";
}; });
};
in
pkgs.python310.override {
inherit packageOverrides;
};
in python.withPackages (ps: [ in
ps.pandas python.withPackages (ps: [
])).env ps.pandas
])
).env
``` ```
Using `nix-build` on this expression will build an environment that contains the Using `nix-build` on this expression will build an environment that contains the
@ -1670,17 +1733,20 @@ environment that uses it. All packages in the Python package set will now use
the updated `scipy` version. the updated `scipy` version.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
( let (
let
packageOverrides = self: super: { packageOverrides = self: super: {
scipy = super.scipy_0_17; scipy = super.scipy_0_17;
}; };
in (pkgs.python310.override { in
(pkgs.python310.override {
inherit packageOverrides; inherit packageOverrides;
}).withPackages (ps: [ }).withPackages
ps.blaze (ps: [
]) ps.blaze
])
).env ).env
``` ```
@ -1692,15 +1758,22 @@ If you want the whole of Nixpkgs to use your modifications, then you can use
```nix ```nix
let let
pkgs = import <nixpkgs> {}; pkgs = import <nixpkgs> { };
newpkgs = import pkgs.path { overlays = [ (self: super: { newpkgs = import pkgs.path {
python310 = let overlays = [
packageOverrides = python-self: python-super: { (self: super: {
numpy = python-super.numpy_1_18; python310 =
}; let
in super.python310.override {inherit packageOverrides;}; packageOverrides = python-self: python-super: {
} ) ]; }; numpy = python-super.numpy_1_18;
in newpkgs.inkscape };
in
super.python310.override { inherit packageOverrides; };
})
];
};
in
newpkgs.inkscape
``` ```
### `python setup.py bdist_wheel` cannot create .whl {#python-setup.py-bdist_wheel-cannot-create-.whl} ### `python setup.py bdist_wheel` cannot create .whl {#python-setup.py-bdist_wheel-cannot-create-.whl}
@ -1790,7 +1863,8 @@ with import <nixpkgs> { };
let let
pythonPackages = python3Packages; pythonPackages = python3Packages;
in pkgs.mkShell rec { in
pkgs.mkShell rec {
name = "impurePythonEnv"; name = "impurePythonEnv";
venvDir = "./.venv"; venvDir = "./.venv";
buildInputs = [ buildInputs = [
@ -1845,7 +1919,8 @@ with import <nixpkgs> { };
let let
venvDir = "./.venv"; venvDir = "./.venv";
pythonPackages = python3Packages; pythonPackages = python3Packages;
in pkgs.mkShell rec { in
pkgs.mkShell rec {
name = "impurePythonEnv"; name = "impurePythonEnv";
buildInputs = [ buildInputs = [
pythonPackages.python pythonPackages.python
@ -1957,13 +2032,11 @@ The following overlay overrides the call to [`buildPythonPackage`](#buildpythonp
```nix ```nix
final: prev: { final: prev: {
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
( (python-final: python-prev: {
python-final: python-prev: { foo = python-prev.foo.overridePythonAttrs (oldAttrs: {
foo = python-prev.foo.overridePythonAttrs (oldAttrs: { # ...
# ... });
}); })
}
)
]; ];
} }
``` ```
@ -1989,13 +2062,14 @@ interpreter of interest, e.g using
```nix ```nix
let let
pkgs = import ./. {}; pkgs = import ./. { };
mypython = pkgs.python3.override { mypython = pkgs.python3.override {
enableOptimizations = true; enableOptimizations = true;
reproducibleBuild = false; reproducibleBuild = false;
self = mypython; self = mypython;
}; };
in mypython in
mypython
``` ```
### How to add optional dependencies? {#python-optional-dependencies} ### How to add optional dependencies? {#python-optional-dependencies}

View file

@ -64,14 +64,18 @@ and then create wrappers manually in `fixupPhase`, using `wrapQtApp`, which itse
The `makeWrapper` arguments required for Qt are also exposed in the environment as `$qtWrapperArgs`. The `makeWrapper` arguments required for Qt are also exposed in the environment as `$qtWrapperArgs`.
```nix ```nix
{ stdenv, lib, wrapQtAppsHook }: {
stdenv,
lib,
wrapQtAppsHook,
}:
stdenv.mkDerivation { stdenv.mkDerivation {
# ... # ...
nativeBuildInputs = [ wrapQtAppsHook ]; nativeBuildInputs = [ wrapQtAppsHook ];
dontWrapQtApps = true; dontWrapQtApps = true;
preFixup = '' preFixup = ''
wrapQtApp "$out/bin/myapp" --prefix PATH : /path/to/bin wrapQtApp "$out/bin/myapp" --prefix PATH : /path/to/bin
''; '';
} }
``` ```

View file

@ -7,18 +7,22 @@ use by adding the following snippet to your $HOME/.config/nixpkgs/config.nix fil
```nix ```nix
{ {
packageOverrides = super: let self = super.pkgs; in packageOverrides =
super:
let
self = super.pkgs;
in
{ {
rEnv = super.rWrapper.override { rEnv = super.rWrapper.override {
packages = with self.rPackages; [ packages = with self.rPackages; [
devtools devtools
ggplot2 ggplot2
reshape2 reshape2
yaml yaml
optparse optparse
]; ];
}; };
}; };
} }
``` ```
@ -33,7 +37,7 @@ environment available for other contributors, you can create a `default.nix`
file like so: file like so:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
{ {
myProject = stdenv.mkDerivation { myProject = stdenv.mkDerivation {
name = "myProject"; name = "myProject";
@ -60,16 +64,20 @@ environment, see `rstudioWrapper`, which functions similarly to
```nix ```nix
{ {
packageOverrides = super: let self = super.pkgs; in packageOverrides =
super:
let
self = super.pkgs;
in
{ {
rstudioEnv = super.rstudioWrapper.override { rstudioEnv = super.rstudioWrapper.override {
packages = with self.rPackages; [ packages = with self.rPackages; [
dplyr dplyr
ggplot2 ggplot2
reshape2 reshape2
]; ];
}; };
}; };
} }
``` ```
@ -81,13 +89,17 @@ Alternatively, you can create a self-contained `shell.nix` without the need to
modify any configuration files: modify any configuration files:
```nix ```nix
{ pkgs ? import <nixpkgs> {} {
pkgs ? import <nixpkgs> { },
}: }:
pkgs.rstudioWrapper.override { pkgs.rstudioWrapper.override {
packages = with pkgs.rPackages; [ dplyr ggplot2 reshape2 ]; packages = with pkgs.rPackages; [
dplyr
ggplot2
reshape2
];
} }
``` ```
Executing `nix-shell` will then drop you into an environment equivalent to the Executing `nix-shell` will then drop you into an environment equivalent to the

View file

@ -36,8 +36,13 @@ As explained [in the `nix-shell` section](https://nixos.org/manual/nix/stable/co
Say we want to have Ruby, `nokogori`, and `pry`. Consider a `shell.nix` file with: Say we want to have Ruby, `nokogori`, and `pry`. Consider a `shell.nix` file with:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
ruby.withPackages (ps: with ps; [ nokogiri pry ]) ruby.withPackages (
ps: with ps; [
nokogiri
pry
]
)
``` ```
What's happening here? What's happening here?
@ -107,7 +112,13 @@ let
name = "gems-for-some-project"; name = "gems-for-some-project";
gemdir = ./.; gemdir = ./.;
}; };
in mkShell { packages = [ gems gems.wrappedRuby ]; } in
mkShell {
packages = [
gems
gems.wrappedRuby
];
}
``` ```
With this file in your directory, you can run `nix-shell` to build and use the gems. The important parts here are `bundlerEnv` and `wrappedRuby`. With this file in your directory, you can run `nix-shell` to build and use the gems. The important parts here are `bundlerEnv` and `wrappedRuby`.
@ -118,7 +129,12 @@ One common issue that you might have is that you have Ruby, but also `bundler` i
```nix ```nix
# ... # ...
mkShell { buildInputs = [ gems (lowPrio gems.wrappedRuby) ]; } mkShell {
buildInputs = [
gems
(lowPrio gems.wrappedRuby)
];
}
``` ```
Sometimes a Gemfile references other files. Such as `.ruby-version` or vendored gems. When copying the Gemfile to the nix store we need to copy those files alongside. This can be done using `extraConfigPaths`. For example: Sometimes a Gemfile references other files. Such as `.ruby-version` or vendored gems. When copying the Gemfile to the nix store we need to copy those files alongside. This can be done using `extraConfigPaths`. For example:
@ -148,41 +164,54 @@ Two places that allow this modification are the `ruby` derivation, or `bundlerEn
Here's the `ruby` one: Here's the `ruby` one:
```nix ```nix
{ pg_version ? "10", pkgs ? import <nixpkgs> { } }: {
pg_version ? "10",
pkgs ? import <nixpkgs> { },
}:
let let
myRuby = pkgs.ruby.override { myRuby = pkgs.ruby.override {
defaultGemConfig = pkgs.defaultGemConfig // { defaultGemConfig = pkgs.defaultGemConfig // {
pg = attrs: { pg = attrs: {
buildFlags = buildFlags = [ "--with-pg-config=${pkgs."postgresql_${pg_version}".pg_config}/bin/pg_config" ];
[ "--with-pg-config=${pkgs."postgresql_${pg_version}".pg_config}/bin/pg_config" ];
}; };
}; };
}; };
in myRuby.withPackages (ps: with ps; [ pg ]) in
myRuby.withPackages (ps: with ps; [ pg ])
``` ```
And an example with `bundlerEnv`: And an example with `bundlerEnv`:
```nix ```nix
{ pg_version ? "10", pkgs ? import <nixpkgs> { } }: {
pg_version ? "10",
pkgs ? import <nixpkgs> { },
}:
let let
gems = pkgs.bundlerEnv { gems = pkgs.bundlerEnv {
name = "gems-for-some-project"; name = "gems-for-some-project";
gemdir = ./.; gemdir = ./.;
gemConfig = pkgs.defaultGemConfig // { gemConfig = pkgs.defaultGemConfig // {
pg = attrs: { pg = attrs: {
buildFlags = buildFlags = [ "--with-pg-config=${pkgs."postgresql_${pg_version}".pg_config}/bin/pg_config" ];
[ "--with-pg-config=${pkgs."postgresql_${pg_version}".pg_config}/bin/pg_config" ];
}; };
}; };
}; };
in mkShell { buildInputs = [ gems gems.wrappedRuby ]; } in
mkShell {
buildInputs = [
gems
gems.wrappedRuby
];
}
``` ```
And finally via overlays: And finally via overlays:
```nix ```nix
{ pg_version ? "10" }: {
pg_version ? "10",
}:
let let
pkgs = import <nixpkgs> { pkgs = import <nixpkgs> {
overlays = [ overlays = [
@ -197,7 +226,8 @@ let
}) })
]; ];
}; };
in pkgs.ruby.withPackages (ps: with ps; [ pg ]) in
pkgs.ruby.withPackages (ps: with ps; [ pg ])
``` ```
Then we can get whichever postgresql version we desire and the `pg` gem will always reference it correctly: Then we can get whichever postgresql version we desire and the `pg` gem will always reference it correctly:
@ -278,7 +308,14 @@ Of course you could also make a custom `gemConfig` if you know exactly how to pa
Here's another example: Here's another example:
```nix ```nix
{ lib, bundlerApp, makeWrapper, git, gnutar, gzip }: {
lib,
bundlerApp,
makeWrapper,
git,
gnutar,
gzip,
}:
bundlerApp { bundlerApp {
pname = "r10k"; pname = "r10k";
@ -288,7 +325,13 @@ bundlerApp {
nativeBuildInputs = [ makeWrapper ]; nativeBuildInputs = [ makeWrapper ];
postBuild = '' postBuild = ''
wrapProgram $out/bin/r10k --prefix PATH : ${lib.makeBinPath [ git gnutar gzip ]} wrapProgram $out/bin/r10k --prefix PATH : ${
lib.makeBinPath [
git
gnutar
gzip
]
}
''; '';
} }
``` ```

View file

@ -22,7 +22,11 @@ or use [community maintained Rust toolchains](#using-community-maintained-rust-t
Rust applications are packaged by using the `buildRustPackage` helper from `rustPlatform`: Rust applications are packaged by using the `buildRustPackage` helper from `rustPlatform`:
```nix ```nix
{ lib, fetchFromGitHub, rustPlatform }: {
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "ripgrep"; pname = "ripgrep";
@ -151,11 +155,13 @@ rustPlatform.buildRustPackage {
pname = "myproject"; pname = "myproject";
version = "1.0.0"; version = "1.0.0";
cargoLock = let cargoLock =
fixupLockFile = path: f (builtins.readFile path); let
in { fixupLockFile = path: f (builtins.readFile path);
lockFileContents = fixupLockFile ./Cargo.lock; in
}; {
lockFileContents = fixupLockFile ./Cargo.lock;
};
# ... # ...
} }
@ -234,7 +240,10 @@ rustPlatform.buildRustPackage rec {
version = "1.0.0"; version = "1.0.0";
buildNoDefaultFeatures = true; buildNoDefaultFeatures = true;
buildFeatures = [ "color" "net" ]; buildFeatures = [
"color"
"net"
];
# disable network features in tests # disable network features in tests
checkFeatures = [ "color" ]; checkFeatures = [ "color" ];
@ -283,7 +292,10 @@ where they are known to differ. But there are ways to customize the argument:
import <nixpkgs> { import <nixpkgs> {
crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // { crossSystem = (import <nixpkgs/lib>).systems.examples.armhf-embedded // {
rust.rustcTarget = "thumb-crazy"; rust.rustcTarget = "thumb-crazy";
rust.platform = { foo = ""; bar = ""; }; rust.platform = {
foo = "";
bar = "";
};
}; };
} }
``` ```
@ -310,7 +322,7 @@ so:
```nix ```nix
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
/* ... */ # ...
checkType = "debug"; checkType = "debug";
} }
``` ```
@ -353,7 +365,7 @@ This can be achieved with `--skip` in `checkFlags`:
```nix ```nix
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
/* ... */ # ...
checkFlags = [ checkFlags = [
# reason for disabling test # reason for disabling test
"--skip=example::tests:example_test" "--skip=example::tests:example_test"
@ -370,7 +382,7 @@ adapted to be compatible with cargo-nextest.
```nix ```nix
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
/* ... */ # ...
useNextest = true; useNextest = true;
} }
``` ```
@ -382,7 +394,7 @@ sometimes it may be necessary to disable this so the tests run consecutively.
```nix ```nix
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
/* ... */ # ...
dontUseCargoParallelTests = true; dontUseCargoParallelTests = true;
} }
``` ```
@ -394,7 +406,7 @@ should be built in `debug` mode, it can be configured like so:
```nix ```nix
rustPlatform.buildRustPackage { rustPlatform.buildRustPackage {
/* ... */ # ...
buildType = "debug"; buildType = "debug";
} }
``` ```
@ -548,12 +560,13 @@ directory of the `tokenizers` project's source archive, we use
`sourceRoot` to point the tooling to this directory: `sourceRoot` to point the tooling to this directory:
```nix ```nix
{ fetchFromGitHub {
, buildPythonPackage fetchFromGitHub,
, cargo buildPythonPackage,
, rustPlatform cargo,
, rustc rustPlatform,
, setuptools-rust rustc,
setuptools-rust,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -568,7 +581,12 @@ buildPythonPackage rec {
}; };
cargoDeps = rustPlatform.fetchCargoVendor { cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src sourceRoot; inherit
pname
version
src
sourceRoot
;
hash = "sha256-RO1m8wEd5Ic2M9q+zFHeCJWhCr4Sv3CEWd08mkxsBec="; hash = "sha256-RO1m8wEd5Ic2M9q+zFHeCJWhCr4Sv3CEWd08mkxsBec=";
}; };
@ -593,12 +611,12 @@ following example, the crate is in `src/rust`, as specified in the
path for `fetchCargoVendor`. path for `fetchCargoVendor`.
```nix ```nix
{
{ buildPythonPackage buildPythonPackage,
, fetchPypi fetchPypi,
, rustPlatform rustPlatform,
, setuptools-rust setuptools-rust,
, openssl openssl,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -632,10 +650,11 @@ builds the `retworkx` Python package. `fetchCargoVendor` and
`maturinBuildHook` is used to perform the build. `maturinBuildHook` is used to perform the build.
```nix ```nix
{ lib {
, buildPythonPackage lib,
, rustPlatform buildPythonPackage,
, fetchFromGitHub rustPlatform,
fetchFromGitHub,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -655,7 +674,10 @@ buildPythonPackage rec {
hash = "sha256-QsPCQhNZKYCAogQriQX6pBYQUDAIUsEdRX/63dAqTzg="; hash = "sha256-QsPCQhNZKYCAogQriQX6pBYQUDAIUsEdRX/63dAqTzg=";
}; };
nativeBuildInputs = with rustPlatform; [ cargoSetupHook maturinBuildHook ]; nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
# ... # ...
} }
@ -666,20 +688,21 @@ buildPythonPackage rec {
Some projects, especially GNOME applications, are built with the Meson Build System instead of calling Cargo directly. Using `rustPlatform.buildRustPackage` may successfully build the main program, but related files will be missing. Instead, you need to set up Cargo dependencies with `fetchCargoVendor` and `cargoSetupHook` and leave the rest to Meson. `rust` and `cargo` are still needed in `nativeBuildInputs` for Meson to use. Some projects, especially GNOME applications, are built with the Meson Build System instead of calling Cargo directly. Using `rustPlatform.buildRustPackage` may successfully build the main program, but related files will be missing. Instead, you need to set up Cargo dependencies with `fetchCargoVendor` and `cargoSetupHook` and leave the rest to Meson. `rust` and `cargo` are still needed in `nativeBuildInputs` for Meson to use.
```nix ```nix
{ lib {
, stdenv lib,
, fetchFromGitLab stdenv,
, meson fetchFromGitLab,
, ninja meson,
, pkg-config ninja,
, rustPlatform pkg-config,
, rustc rustPlatform,
, cargo rustc,
, wrapGAppsHook4 cargo,
, blueprint-compiler wrapGAppsHook4,
, libadwaita blueprint-compiler,
, libsecret libadwaita,
, tinysparql libsecret,
tinysparql,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
@ -744,8 +767,8 @@ Starting from that file, one can add more overrides, to add features
or build inputs by overriding the hello crate in a separate file. or build inputs by overriding the hello crate in a separate file.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
((import ./hello.nix).hello {}).override { ((import ./hello.nix).hello { }).override {
crateOverrides = defaultCrateOverrides // { crateOverrides = defaultCrateOverrides // {
hello = attrs: { buildInputs = [ openssl ]; }; hello = attrs: { buildInputs = [ openssl ]; };
}; };
@ -764,15 +787,17 @@ the override above can be read, as in the following example, which
patches the derivation: patches the derivation:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
((import ./hello.nix).hello {}).override { ((import ./hello.nix).hello { }).override {
crateOverrides = defaultCrateOverrides // { crateOverrides = defaultCrateOverrides // {
hello = attrs: lib.optionalAttrs (lib.versionAtLeast attrs.version "1.0") { hello =
postPatch = '' attrs:
substituteInPlace lib/zoneinfo.rs \ lib.optionalAttrs (lib.versionAtLeast attrs.version "1.0") {
--replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo" postPatch = ''
''; substituteInPlace lib/zoneinfo.rs \
}; --replace-fail "/usr/share/zoneinfo" "${tzdata}/share/zoneinfo"
'';
};
}; };
} }
``` ```
@ -785,10 +810,10 @@ dependencies. For instance, to override the build inputs for crate
crate, we could do: crate, we could do:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
((import hello.nix).hello {}).override { ((import hello.nix).hello { }).override {
crateOverrides = defaultCrateOverrides // { crateOverrides = defaultCrateOverrides // {
libc = attrs: { buildInputs = []; }; libc = attrs: { buildInputs = [ ]; };
}; };
} }
``` ```
@ -801,27 +826,27 @@ general. A number of other parameters can be overridden:
- The version of `rustc` used to compile the crate: - The version of `rustc` used to compile the crate:
```nix ```nix
(hello {}).override { rust = pkgs.rust; } (hello { }).override { rust = pkgs.rust; }
``` ```
- Whether to build in release mode or debug mode (release mode by - Whether to build in release mode or debug mode (release mode by
default): default):
```nix ```nix
(hello {}).override { release = false; } (hello { }).override { release = false; }
``` ```
- Whether to print the commands sent to `rustc` when building - Whether to print the commands sent to `rustc` when building
(equivalent to `--verbose` in cargo: (equivalent to `--verbose` in cargo:
```nix ```nix
(hello {}).override { verbose = false; } (hello { }).override { verbose = false; }
``` ```
- Extra arguments to be passed to `rustc`: - Extra arguments to be passed to `rustc`:
```nix ```nix
(hello {}).override { extraRustcOpts = "-Z debuginfo=2"; } (hello { }).override { extraRustcOpts = "-Z debuginfo=2"; }
``` ```
- Phases, just like in any other derivation, can be specified using - Phases, just like in any other derivation, can be specified using
@ -833,9 +858,9 @@ general. A number of other parameters can be overridden:
before running the build script: before running the build script:
```nix ```nix
(hello {}).override { (hello { }).override {
preConfigure = '' preConfigure = ''
echo "pub const PATH=\"${hi.out}\";" >> src/path.rs" echo "pub const PATH=\"${hi.out}\";" >> src/path.rs"
''; '';
} }
``` ```
@ -856,12 +881,13 @@ Using the example `hello` project above, we want to do the following:
A typical `shell.nix` might look like: A typical `shell.nix` might look like:
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
stdenv.mkDerivation { stdenv.mkDerivation {
name = "rust-env"; name = "rust-env";
nativeBuildInputs = [ nativeBuildInputs = [
rustc cargo rustc
cargo
# Example Build-time Additional Dependencies # Example Build-time Additional Dependencies
pkg-config pkg-config
@ -917,15 +943,13 @@ Here is a simple `shell.nix` that provides Rust nightly (default profile) using
```nix ```nix
with import <nixpkgs> { }; with import <nixpkgs> { };
let let
fenix = callPackage fenix = callPackage (fetchFromGitHub {
(fetchFromGitHub { owner = "nix-community";
owner = "nix-community"; repo = "fenix";
repo = "fenix"; # commit from: 2023-03-03
# commit from: 2023-03-03 rev = "e2ea04982b892263c4d939f1cc3bf60a9c4deaa1";
rev = "e2ea04982b892263c4d939f1cc3bf60a9c4deaa1"; hash = "sha256-AsOim1A8KKtMWIxG+lXh5Q4P2bhOZjoUhFWJ1EuZNNk=";
hash = "sha256-AsOim1A8KKtMWIxG+lXh5Q4P2bhOZjoUhFWJ1EuZNNk="; }) { };
})
{ };
in in
mkShell { mkShell {
name = "rust-env"; name = "rust-env";
@ -964,8 +988,7 @@ You can also use Rust nightly to build rust packages using `makeRustPlatform`.
The below snippet demonstrates invoking `buildRustPackage` with a Rust toolchain from oxalica's overlay: The below snippet demonstrates invoking `buildRustPackage` with a Rust toolchain from oxalica's overlay:
```nix ```nix
with import <nixpkgs> with import <nixpkgs> {
{
overlays = [ overlays = [
(import (fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz")) (import (fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz"))
]; ];
@ -996,8 +1019,11 @@ rustPlatform.buildRustPackage rec {
meta = { meta = {
description = "Fast line-oriented regex search tool, similar to ag and ack"; description = "Fast line-oriented regex search tool, similar to ag and ack";
homepage = "https://github.com/BurntSushi/ripgrep"; homepage = "https://github.com/BurntSushi/ripgrep";
license = with lib.licenses; [ mit unlicense ]; license = with lib.licenses; [
maintainers = with lib.maintainers; []; mit
unlicense
];
maintainers = with lib.maintainers; [ ];
}; };
} }
``` ```
@ -1029,19 +1055,28 @@ with the path into which you have `git clone`d the `rustc` git
repository: repository:
```nix ```nix
(final: prev: /*lib.optionalAttrs prev.stdenv.targetPlatform.isAarch64*/ { (
rust_1_72 = final: prev: # lib.optionalAttrs prev.stdenv.targetPlatform.isAarch64
lib.updateManyAttrsByPath [{ {
path = [ "packages" "stable" ]; rust_1_72 = lib.updateManyAttrsByPath [
update = old: old.overrideScope(final: prev: { {
rustc-unwrapped = prev.rustc-unwrapped.overrideAttrs (_: { path = [
src = lib.cleanSource /git/scratch/rust; "packages"
# do *not* put passthru.isReleaseTarball=true here "stable"
}); ];
}); update =
}] old:
prev.rust_1_72; old.overrideScope (
}) final: prev: {
rustc-unwrapped = prev.rustc-unwrapped.overrideAttrs (_: {
src = lib.cleanSource /git/scratch/rust;
# do *not* put passthru.isReleaseTarball=true here
});
}
);
}
] prev.rust_1_72;
})
``` ```
If the problem you're troubleshooting only manifests when If the problem you're troubleshooting only manifests when

View file

@ -69,7 +69,13 @@ This produces some files in a directory `nix`, which will be part of your Nix
expression. The next step is to write that expression: expression. The next step is to write that expression:
```nix ```nix
{ stdenv, swift, swiftpm, swiftpm2nix, fetchFromGitHub }: {
stdenv,
swift,
swiftpm,
swiftpm2nix,
fetchFromGitHub,
}:
let let
# Pass the generated files to the helper. # Pass the generated files to the helper.
@ -90,7 +96,10 @@ stdenv.mkDerivation rec {
# Including SwiftPM as a nativeBuildInput provides a buildPhase for you. # Including SwiftPM as a nativeBuildInput provides a buildPhase for you.
# This by default performs a release build using SwiftPM, essentially: # This by default performs a release build using SwiftPM, essentially:
# swift build -c release # swift build -c release
nativeBuildInputs = [ swift swiftpm ]; nativeBuildInputs = [
swift
swiftpm
];
# The helper provides a configure snippet that will prepare all dependencies # The helper provides a configure snippet that will prepare all dependencies
# in the correct place, where SwiftPM expects them. # in the correct place, where SwiftPM expects them.

View file

@ -10,7 +10,13 @@ Release 23.11 ships with a new interface that will eventually replace `texlive.c
- Packages cannot be used directly but must be assembled in an environment. To create or add packages to an environment, use - Packages cannot be used directly but must be assembled in an environment. To create or add packages to an environment, use
```nix ```nix
texliveSmall.withPackages (ps: with ps; [ collection-langkorean algorithms cm-super ]) texliveSmall.withPackages (
ps: with ps; [
collection-langkorean
algorithms
cm-super
]
)
``` ```
The function `withPackages` can be called multiple times to add more packages. The function `withPackages` can be called multiple times to add more packages.
@ -18,12 +24,14 @@ Release 23.11 ships with a new interface that will eventually replace `texlive.c
- `texlive.withPackages` uses the same logic as `buildEnv`. Only parts of a package are installed in an environment: its 'runtime' files (`tex` output), binaries (`out` output), and support files (`tlpkg` output). Moreover, man and info pages are assembled into separate `man` and `info` outputs. To add only the TeX files of a package, or its documentation (`texdoc` output), just specify the outputs: - `texlive.withPackages` uses the same logic as `buildEnv`. Only parts of a package are installed in an environment: its 'runtime' files (`tex` output), binaries (`out` output), and support files (`tlpkg` output). Moreover, man and info pages are assembled into separate `man` and `info` outputs. To add only the TeX files of a package, or its documentation (`texdoc` output), just specify the outputs:
```nix ```nix
texlive.withPackages (ps: with ps; [ texlive.withPackages (
texdoc # recommended package to navigate the documentation ps: with ps; [
perlPackages.LaTeXML.tex # tex files of LaTeXML, omit binaries texdoc # recommended package to navigate the documentation
cm-super perlPackages.LaTeXML.tex # tex files of LaTeXML, omit binaries
cm-super.texdoc # documentation of cm-super cm-super
]) cm-super.texdoc # documentation of cm-super
]
)
``` ```
- All packages distributed by TeX Live, which contains most of CTAN, are available and can be found under `texlive.pkgs`: - All packages distributed by TeX Live, which contains most of CTAN, are available and can be found under `texlive.pkgs`:
@ -50,7 +58,12 @@ Release 23.11 ships with a new interface that will eventually replace `texlive.c
```nix ```nix
texlive.combine { texlive.combine {
inherit (texlive) scheme-small collection-langkorean algorithms cm-super; inherit (texlive)
scheme-small
collection-langkorean
algorithms
cm-super
;
} }
``` ```
@ -61,8 +74,8 @@ Release 23.11 ships with a new interface that will eventually replace `texlive.c
```nix ```nix
texlive.combine { texlive.combine {
# inherit (texlive) whatever-you-want; # inherit (texlive) whatever-you-want;
pkgFilter = pkg: pkgFilter =
pkg.tlType == "run" || pkg.tlType == "bin" || pkg.hasManpages || pkg.pname == "cm-super"; pkg: pkg.tlType == "run" || pkg.tlType == "bin" || pkg.hasManpages || pkg.pname == "cm-super";
# elem tlType [ "run" "bin" "doc" "source" ] # elem tlType [ "run" "bin" "doc" "source" ]
# there are also other attributes: version, name # there are also other attributes: version, name
} }
@ -114,14 +127,17 @@ When using `pkgFilter`, `texlive.combine` will assign `tlType` respectively `"bi
Here is a (very verbose) example. See also the packages `auctex`, `eukleides`, `mftrace` for more examples. Here is a (very verbose) example. See also the packages `auctex`, `eukleides`, `mftrace` for more examples.
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
let let
foiltex = stdenvNoCC.mkDerivation { foiltex = stdenvNoCC.mkDerivation {
pname = "latex-foiltex"; pname = "latex-foiltex";
version = "2.1.4b"; version = "2.1.4b";
outputs = [ "tex" "texdoc" ]; outputs = [
"tex"
"texdoc"
];
passthru.tlDeps = with texlive; [ latex ]; passthru.tlDeps = with texlive; [ latex ];
srcs = [ srcs = [
@ -146,7 +162,13 @@ let
''; '';
nativeBuildInputs = [ nativeBuildInputs = [
(texliveSmall.withPackages (ps: with ps; [ cm-super hypdoc latexmk ])) (texliveSmall.withPackages (
ps: with ps; [
cm-super
hypdoc
latexmk
]
))
# multiple-outputs.sh fails if $out is not defined # multiple-outputs.sh fails if $out is not defined
(writeShellScript "force-tex-output.sh" '' (writeShellScript "force-tex-output.sh" ''
out="''${tex-}" out="''${tex-}"
@ -192,22 +214,24 @@ let
latex_with_foiltex = texliveSmall.withPackages (_: [ foiltex ]); latex_with_foiltex = texliveSmall.withPackages (_: [ foiltex ]);
in in
runCommand "test.pdf" { runCommand "test.pdf"
{
nativeBuildInputs = [ latex_with_foiltex ]; nativeBuildInputs = [ latex_with_foiltex ];
} '' }
cat >test.tex <<EOF ''
\documentclass{foils} cat >test.tex <<EOF
\documentclass{foils}
\title{Presentation title} \title{Presentation title}
\date{} \date{}
\begin{document} \begin{document}
\maketitle \maketitle
\end{document} \end{document}
EOF EOF
pdflatex test.tex pdflatex test.tex
cp test.pdf $out cp test.pdf $out
'' ''
``` ```
## LuaLaTeX font cache {#sec-language-texlive-lualatex-font-cache} ## LuaLaTeX font cache {#sec-language-texlive-lualatex-font-cache}
@ -215,13 +239,15 @@ EOF
The font cache for LuaLaTeX is written to `$HOME`. The font cache for LuaLaTeX is written to `$HOME`.
Therefore, it is necessary to set `$HOME` to a writable path, e.g. [before using LuaLaTeX in nix derivations](https://github.com/NixOS/nixpkgs/issues/180639): Therefore, it is necessary to set `$HOME` to a writable path, e.g. [before using LuaLaTeX in nix derivations](https://github.com/NixOS/nixpkgs/issues/180639):
```nix ```nix
runCommandNoCC "lualatex-hello-world" { runCommandNoCC "lualatex-hello-world"
buildInputs = [ texliveFull ]; {
} '' buildInputs = [ texliveFull ];
mkdir $out }
echo '\documentclass{article} \begin{document} Hello world \end{document}' > main.tex ''
env HOME=$(mktemp -d) lualatex -interaction=nonstopmode -output-format=pdf -output-directory=$out ./main.tex mkdir $out
'' echo '\documentclass{article} \begin{document} Hello world \end{document}' > main.tex
env HOME=$(mktemp -d) lualatex -interaction=nonstopmode -output-format=pdf -output-directory=$out ./main.tex
''
``` ```
Additionally, [the cache of a user can diverge from the nix store](https://github.com/NixOS/nixpkgs/issues/278718). Additionally, [the cache of a user can diverge from the nix store](https://github.com/NixOS/nixpkgs/issues/278718).

View file

@ -47,11 +47,17 @@ To store your plugins in Vim packages (the native Vim plugin manager, see `:help
vim-full.customize { vim-full.customize {
vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; { vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; {
# loaded on launch # loaded on launch
start = [ youcompleteme fugitive ]; start = [
youcompleteme
fugitive
];
# manually loadable by calling `:packadd $plugin-name` # manually loadable by calling `:packadd $plugin-name`
# however, if a Vim plugin has a dependency that is not explicitly listed in # however, if a Vim plugin has a dependency that is not explicitly listed in
# opt that dependency will always be added to start to avoid confusion. # opt that dependency will always be added to start to avoid confusion.
opt = [ phpCompletion elm-vim ]; opt = [
phpCompletion
elm-vim
];
# To automatically load a plugin when opening a filetype, add vimrc lines like: # To automatically load a plugin when opening a filetype, add vimrc lines like:
# autocmd FileType php :packadd phpCompletion # autocmd FileType php :packadd phpCompletion
}; };
@ -63,18 +69,19 @@ The resulting package can be added to `packageOverrides` in `~/.nixpkgs/config.n
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides =
myVim = vim-full.customize { pkgs: with pkgs; {
# `name` specifies the name of the executable and package myVim = vim-full.customize {
name = "vim-with-plugins"; # `name` specifies the name of the executable and package
# add here code from the example section name = "vim-with-plugins";
}; # add here code from the example section
myNeovim = neovim.override { };
configure = { myNeovim = neovim.override {
# add code from the example section here configure = {
# add code from the example section here
};
}; };
}; };
};
} }
``` ```
@ -100,20 +107,18 @@ let
in in
{ {
environment.systemPackages = [ environment.systemPackages = [
( (pkgs.neovim.override {
pkgs.neovim.override { configure = {
configure = { packages.myPlugins = with pkgs.vimPlugins; {
packages.myPlugins = with pkgs.vimPlugins; {
start = [ start = [
vim-go # already packaged plugin vim-go # already packaged plugin
easygrep # custom package easygrep # custom package
]; ];
opt = []; opt = [ ];
}; };
# ... # ...
}; };
} })
)
]; ];
} }
``` ```
@ -129,7 +134,12 @@ plugins the following example can be used:
vim-full.customize { vim-full.customize {
vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; { vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; {
# loaded on launch # loaded on launch
plug.plugins = [ youcompleteme fugitive phpCompletion elm-vim ]; plug.plugins = [
youcompleteme
fugitive
phpCompletion
elm-vim
];
}; };
} }
``` ```
@ -147,8 +157,11 @@ Some plugins require overrides in order to function properly. Overrides are plac
```nix ```nix
{ {
deoplete-fish = super.deoplete-fish.overrideAttrs(old: { deoplete-fish = super.deoplete-fish.overrideAttrs (old: {
dependencies = with super; [ deoplete-nvim vim-fish ]; dependencies = with super; [
deoplete-nvim
vim-fish
];
}); });
} }
``` ```
@ -199,9 +212,7 @@ You can then reference the generated vim plugins via:
```nix ```nix
{ {
myVimPlugins = pkgs.vimPlugins.extend ( myVimPlugins = pkgs.vimPlugins.extend ((pkgs.callPackage ./generated.nix { }));
(pkgs.callPackage ./generated.nix {})
);
} }
``` ```

View file

@ -48,7 +48,7 @@ let
# Unfortunately, this refers to the package before overriding and # Unfortunately, this refers to the package before overriding and
# parallel building is still disabled. # parallel building is still disabled.
badExample = myCDDA.withMods (_: []); badExample = myCDDA.withMods (_: [ ]);
inherit (cataclysmDDA) attachPkgs pkgs wrapCDDA; inherit (cataclysmDDA) attachPkgs pkgs wrapCDDA;
@ -66,7 +66,7 @@ in
# badExample # parallel building disabled # badExample # parallel building disabled
# goodExample1.withMods (_: []) # parallel building enabled # goodExample1.withMods (_: []) # parallel building enabled
goodExample2.withMods (_: []) # parallel building enabled goodExample2.withMods (_: [ ]) # parallel building enabled
``` ```
## Customizing with mods {#customizing-with-mods} ## Customizing with mods {#customizing-with-mods}
@ -75,9 +75,11 @@ To install Cataclysm DDA with mods of your choice, you can use `withMods`
attribute: attribute:
```nix ```nix
cataclysm-dda.withMods (mods: with mods; [ cataclysm-dda.withMods (
tileset.UndeadPeople mods: with mods; [
]) tileset.UndeadPeople
]
)
``` ```
All mods, soundpacks, and tilesets available in nixpkgs are found in All mods, soundpacks, and tilesets available in nixpkgs are found in
@ -88,42 +90,46 @@ in nixpkgs:
```nix ```nix
let let
customMods = self: super: lib.recursiveUpdate super { customMods =
# Modify existing mod self: super:
tileset.UndeadPeople = super.tileset.UndeadPeople.overrideAttrs (old: { lib.recursiveUpdate super {
# If you like to apply a patch to the tileset for example # Modify existing mod
patches = [ ./path/to/your.patch ]; tileset.UndeadPeople = super.tileset.UndeadPeople.overrideAttrs (old: {
}); # If you like to apply a patch to the tileset for example
patches = [ ./path/to/your.patch ];
});
# Add another mod # Add another mod
mod.Awesome = cataclysmDDA.buildMod { mod.Awesome = cataclysmDDA.buildMod {
modName = "Awesome"; modName = "Awesome";
version = "0.x"; version = "0.x";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "Someone"; owner = "Someone";
repo = "AwesomeMod"; repo = "AwesomeMod";
rev = "..."; rev = "...";
hash = "..."; hash = "...";
};
# Path to be installed in the unpacked source (default: ".")
modRoot = "contents/under/this/path/will/be/installed";
}; };
# Path to be installed in the unpacked source (default: ".")
modRoot = "contents/under/this/path/will/be/installed";
};
# Add another soundpack # Add another soundpack
soundpack.Fantastic = cataclysmDDA.buildSoundPack { soundpack.Fantastic = cataclysmDDA.buildSoundPack {
# ditto # ditto
}; };
# Add another tileset # Add another tileset
tileset.SuperDuper = cataclysmDDA.buildTileSet { tileset.SuperDuper = cataclysmDDA.buildTileSet {
# ditto # ditto
};
}; };
};
in in
cataclysm-dda.withMods (mods: with mods.extend customMods; [ cataclysm-dda.withMods (
tileset.UndeadPeople mods: with mods.extend customMods; [
mod.Awesome tileset.UndeadPeople
soundpack.Fantastic mod.Awesome
tileset.SuperDuper soundpack.Fantastic
]) tileset.SuperDuper
]
)
``` ```

View file

@ -28,5 +28,6 @@ let
./custom-cert-1.pem ./custom-cert-1.pem
./custom-cert-2.pem # ... ./custom-cert-2.pem # ...
]; ];
in citrix_workspace.override { inherit extraCerts; } in
citrix_workspace.override { inherit extraCerts; }
``` ```

View file

@ -89,58 +89,72 @@ $ sudo launchctl kickstart -k system/org.nixos.nix-daemon
darwin.inputs.nixpkgs.follows = "nixpkgs"; darwin.inputs.nixpkgs.follows = "nixpkgs";
}; };
outputs = { self, darwin, nixpkgs, ... }@inputs: outputs =
let {
self,
darwin,
nixpkgs,
...
}@inputs:
let
inherit (darwin.lib) darwinSystem; inherit (darwin.lib) darwinSystem;
system = "aarch64-darwin"; system = "aarch64-darwin";
pkgs = nixpkgs.legacyPackages."${system}"; pkgs = nixpkgs.legacyPackages."${system}";
linuxSystem = builtins.replaceStrings [ "darwin" ] [ "linux" ] system; linuxSystem = builtins.replaceStrings [ "darwin" ] [ "linux" ] system;
darwin-builder = nixpkgs.lib.nixosSystem { darwin-builder = nixpkgs.lib.nixosSystem {
system = linuxSystem; system = linuxSystem;
modules = [
"${nixpkgs}/nixos/modules/profiles/nix-builder-vm.nix"
{ virtualisation = {
host.pkgs = pkgs;
darwin-builder.workingDirectory = "/var/lib/darwin-builder";
darwin-builder.hostPort = 22;
};
}
];
};
in {
darwinConfigurations = {
machine1 = darwinSystem {
inherit system;
modules = [ modules = [
"${nixpkgs}/nixos/modules/profiles/nix-builder-vm.nix"
{ {
nix.distributedBuilds = true; virtualisation = {
nix.buildMachines = [{ host.pkgs = pkgs;
hostName = "localhost"; darwin-builder.workingDirectory = "/var/lib/darwin-builder";
sshUser = "builder"; darwin-builder.hostPort = 22;
sshKey = "/etc/nix/builder_ed25519";
system = linuxSystem;
maxJobs = 4;
supportedFeatures = [ "kvm" "benchmark" "big-parallel" ];
}];
launchd.daemons.darwin-builder = {
command = "${darwin-builder.config.system.build.macos-builder-installer}/bin/create-builder";
serviceConfig = {
KeepAlive = true;
RunAtLoad = true;
StandardOutPath = "/var/log/darwin-builder.log";
StandardErrorPath = "/var/log/darwin-builder.log";
};
}; };
} }
]; ];
}; };
}; in
{
}; darwinConfigurations = {
machine1 = darwinSystem {
inherit system;
modules = [
{
nix.distributedBuilds = true;
nix.buildMachines = [
{
hostName = "localhost";
sshUser = "builder";
sshKey = "/etc/nix/builder_ed25519";
system = linuxSystem;
maxJobs = 4;
supportedFeatures = [
"kvm"
"benchmark"
"big-parallel"
];
}
];
launchd.daemons.darwin-builder = {
command = "${darwin-builder.config.system.build.macos-builder-installer}/bin/create-builder";
serviceConfig = {
KeepAlive = true;
RunAtLoad = true;
StandardOutPath = "/var/log/darwin-builder.log";
StandardErrorPath = "/var/log/darwin-builder.log";
};
};
}
];
};
};
};
} }
``` ```
@ -154,21 +168,21 @@ To do this, you just need to set the `virtualisation.darwin-builder.*` parameter
in the example below and rebuild. in the example below and rebuild.
```nix ```nix
{ {
darwin-builder = nixpkgs.lib.nixosSystem { darwin-builder = nixpkgs.lib.nixosSystem {
system = linuxSystem; system = linuxSystem;
modules = [ modules = [
"${nixpkgs}/nixos/modules/profiles/nix-builder-vm.nix" "${nixpkgs}/nixos/modules/profiles/nix-builder-vm.nix"
{ {
virtualisation.host.pkgs = pkgs; virtualisation.host.pkgs = pkgs;
virtualisation.darwin-builder.diskSize = 5120; virtualisation.darwin-builder.diskSize = 5120;
virtualisation.darwin-builder.memorySize = 1024; virtualisation.darwin-builder.memorySize = 1024;
virtualisation.darwin-builder.hostPort = 33022; virtualisation.darwin-builder.hostPort = 33022;
virtualisation.darwin-builder.workingDirectory = "/var/lib/darwin-builder"; virtualisation.darwin-builder.workingDirectory = "/var/lib/darwin-builder";
} }
]; ];
}; };
} }
``` ```
You may make any other changes to your VM in this attribute set. For example, You may make any other changes to your VM in this attribute set. For example,

View file

@ -15,11 +15,13 @@ If you prefer to install plugins in a more declarative manner, then Nixpkgs also
```nix ```nix
{ {
packageOverrides = pkgs: { packageOverrides = pkgs: {
myEclipse = with pkgs.eclipses; eclipseWithPlugins { myEclipse =
eclipse = eclipse-platform; with pkgs.eclipses;
jvmArgs = [ "-Xmx2048m" ]; eclipseWithPlugins {
plugins = [ plugins.color-theme ]; eclipse = eclipse-platform;
}; jvmArgs = [ "-Xmx2048m" ];
plugins = [ plugins.color-theme ];
};
}; };
} }
``` ```
@ -37,32 +39,34 @@ Expanding the previous example with two plugins using the above functions, we ha
```nix ```nix
{ {
packageOverrides = pkgs: { packageOverrides = pkgs: {
myEclipse = with pkgs.eclipses; eclipseWithPlugins { myEclipse =
eclipse = eclipse-platform; with pkgs.eclipses;
jvmArgs = [ "-Xmx2048m" ]; eclipseWithPlugins {
plugins = [ eclipse = eclipse-platform;
plugins.color-theme jvmArgs = [ "-Xmx2048m" ];
(plugins.buildEclipsePlugin { plugins = [
name = "myplugin1-1.0"; plugins.color-theme
srcFeature = fetchurl { (plugins.buildEclipsePlugin {
url = "http://…/features/myplugin1.jar"; name = "myplugin1-1.0";
hash = "sha256-123…"; srcFeature = fetchurl {
}; url = "http://…/features/myplugin1.jar";
srcPlugin = fetchurl { hash = "sha256-123…";
url = "http://…/plugins/myplugin1.jar"; };
hash = "sha256-123…"; srcPlugin = fetchurl {
}; url = "http://…/plugins/myplugin1.jar";
}) hash = "sha256-123…";
(plugins.buildEclipseUpdateSite { };
name = "myplugin2-1.0"; })
src = fetchurl { (plugins.buildEclipseUpdateSite {
stripRoot = false; name = "myplugin2-1.0";
url = "http://…/myplugin2.zip"; src = fetchurl {
hash = "sha256-123…"; stripRoot = false;
}; url = "http://…/myplugin2.zip";
}) hash = "sha256-123…";
]; };
}; })
];
};
}; };
} }
``` ```

View file

@ -6,17 +6,21 @@ The Emacs package comes with some extra helpers to make it easier to configure.
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides =
myEmacs = emacs.pkgs.withPackages (epkgs: (with epkgs.melpaStablePackages; [ pkgs: with pkgs; {
company myEmacs = emacs.pkgs.withPackages (
counsel epkgs:
flycheck (with epkgs.melpaStablePackages; [
ivy company
magit counsel
projectile flycheck
use-package ivy
])); magit
}; projectile
use-package
])
);
};
} }
``` ```
@ -24,76 +28,80 @@ You can install it like any other packages via `nix-env -iA myEmacs`. However, t
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; rec { packageOverrides =
myEmacsConfig = writeText "default.el" '' pkgs: with pkgs; rec {
(eval-when-compile myEmacsConfig = writeText "default.el" ''
(require 'use-package)) (eval-when-compile
(require 'use-package))
;; load some packages ;; load some packages
(use-package company (use-package company
:bind ("<C-tab>" . company-complete) :bind ("<C-tab>" . company-complete)
:diminish company-mode :diminish company-mode
:commands (company-mode global-company-mode) :commands (company-mode global-company-mode)
:defer 1 :defer 1
:config :config
(global-company-mode)) (global-company-mode))
(use-package counsel (use-package counsel
:commands (counsel-descbinds) :commands (counsel-descbinds)
:bind (([remap execute-extended-command] . counsel-M-x) :bind (([remap execute-extended-command] . counsel-M-x)
("C-x C-f" . counsel-find-file) ("C-x C-f" . counsel-find-file)
("C-c g" . counsel-git) ("C-c g" . counsel-git)
("C-c j" . counsel-git-grep) ("C-c j" . counsel-git-grep)
("C-c k" . counsel-ag) ("C-c k" . counsel-ag)
("C-x l" . counsel-locate) ("C-x l" . counsel-locate)
("M-y" . counsel-yank-pop))) ("M-y" . counsel-yank-pop)))
(use-package flycheck (use-package flycheck
:defer 2 :defer 2
:config (global-flycheck-mode)) :config (global-flycheck-mode))
(use-package ivy (use-package ivy
:defer 1 :defer 1
:bind (("C-c C-r" . ivy-resume) :bind (("C-c C-r" . ivy-resume)
("C-x C-b" . ivy-switch-buffer) ("C-x C-b" . ivy-switch-buffer)
:map ivy-minibuffer-map :map ivy-minibuffer-map
("C-j" . ivy-call)) ("C-j" . ivy-call))
:diminish ivy-mode :diminish ivy-mode
:commands ivy-mode :commands ivy-mode
:config :config
(ivy-mode 1)) (ivy-mode 1))
(use-package magit (use-package magit
:defer :defer
:if (executable-find "git") :if (executable-find "git")
:bind (("C-x g" . magit-status) :bind (("C-x g" . magit-status)
("C-x G" . magit-dispatch-popup)) ("C-x G" . magit-dispatch-popup))
:init :init
(setq magit-completing-read-function 'ivy-completing-read)) (setq magit-completing-read-function 'ivy-completing-read))
(use-package projectile (use-package projectile
:commands projectile-mode :commands projectile-mode
:bind-keymap ("C-c p" . projectile-command-map) :bind-keymap ("C-c p" . projectile-command-map)
:defer 5 :defer 5
:config :config
(projectile-global-mode)) (projectile-global-mode))
''; '';
myEmacs = emacs.pkgs.withPackages (epkgs: (with epkgs.melpaStablePackages; [ myEmacs = emacs.pkgs.withPackages (
(runCommand "default.el" {} '' epkgs:
mkdir -p $out/share/emacs/site-lisp (with epkgs.melpaStablePackages; [
cp ${myEmacsConfig} $out/share/emacs/site-lisp/default.el (runCommand "default.el" { } ''
'') mkdir -p $out/share/emacs/site-lisp
company cp ${myEmacsConfig} $out/share/emacs/site-lisp/default.el
counsel '')
flycheck company
ivy counsel
magit flycheck
projectile ivy
use-package magit
])); projectile
}; use-package
])
);
};
} }
``` ```
@ -108,11 +116,12 @@ let
# ... # ...
}; };
in in
((emacsPackagesFor emacs).overrideScope overrides).withPackages ((emacsPackagesFor emacs).overrideScope overrides).withPackages (
(p: with p; [ p: with p; [
# here both these package will use haskell-mode of our own choice # here both these package will use haskell-mode of our own choice
ghc-mod ghc-mod
dante dante
]) ]
)
``` ```
} }

View file

@ -42,9 +42,12 @@ way to test Fish plugins and scripts without having to alter the environment.
```nix ```nix
wrapFish { wrapFish {
pluginPkgs = with fishPlugins; [ pure foreign-env ]; pluginPkgs = with fishPlugins; [
completionDirs = []; pure
functionDirs = []; foreign-env
];
completionDirs = [ ];
functionDirs = [ ];
confDirs = [ "/path/to/some/fish/init/dir/" ]; confDirs = [ "/path/to/some/fish/init/dir/" ];
} }
``` ```

View file

@ -9,7 +9,8 @@ IBus needs to be configured accordingly to activate `typing-booster`. The config
On NixOS, you need to explicitly enable `ibus` with given engines before customizing your desktop to use `typing-booster`. This can be achieved using the `ibus` module: On NixOS, you need to explicitly enable `ibus` with given engines before customizing your desktop to use `typing-booster`. This can be achieved using the `ibus` module:
```nix ```nix
{ pkgs, ... }: { { pkgs, ... }:
{
i18n.inputMethod = { i18n.inputMethod = {
enable = true; enable = true;
type = "ibus"; type = "ibus";
@ -23,7 +24,12 @@ On NixOS, you need to explicitly enable `ibus` with given engines before customi
The IBus engine is based on `hunspell` to support completion in many languages. By default, the dictionaries `de-de`, `en-us`, `fr-moderne` `es-es`, `it-it`, `sv-se` and `sv-fi` are in use. To add another dictionary, the package can be overridden like this: The IBus engine is based on `hunspell` to support completion in many languages. By default, the dictionaries `de-de`, `en-us`, `fr-moderne` `es-es`, `it-it`, `sv-se` and `sv-fi` are in use. To add another dictionary, the package can be overridden like this:
```nix ```nix
ibus-engines.typing-booster.override { langs = [ "de-at" "en-gb" ]; } ibus-engines.typing-booster.override {
langs = [
"de-at"
"en-gb"
];
}
``` ```
_Note: each language passed to `langs` must be an attribute name in `pkgs.hunspellDicts`._ _Note: each language passed to `langs` must be an attribute name in `pkgs.hunspellDicts`._
@ -35,7 +41,8 @@ The `ibus-engines.typing-booster` package contains a program named `emoji-picker
On NixOS, it can be installed using the following expression: On NixOS, it can be installed using the following expression:
```nix ```nix
{ pkgs, ... }: { { pkgs, ... }:
{
fonts.packages = with pkgs; [ noto-fonts-color-emoji ]; fonts.packages = with pkgs; [ noto-fonts-color-emoji ];
} }
``` ```

View file

@ -23,7 +23,7 @@ list of previous plugins via `pkgs.krita.binaryPlugins`:
```nix ```nix
(pkgs.krita.override (old: { (pkgs.krita.override (old: {
binaryPlugins = old.binaryPlugins ++ [ your-plugin ]; binaryPlugins = old.binaryPlugins ++ [ your-plugin ];
})) }))
``` ```

View file

@ -7,16 +7,20 @@ Python bindings for Tree Sitter grammars are provided through the [py-tree-sitte
For example, to experiment with the Rust grammar, you can create a shell environment with the following configuration: For example, to experiment with the Rust grammar, you can create a shell environment with the following configuration:
```nix ```nix
{ pkgs ? <nixpkgs> {} }: {
pkgs ? <nixpkgs> { },
}:
pkgs.mkShell { pkgs.mkShell {
name = "py-tree-sitter-dev-shell"; name = "py-tree-sitter-dev-shell";
buildInputs = with pkgs; [ buildInputs = with pkgs; [
(python3.withPackages (ps: with ps; [ (python3.withPackages (
tree-sitter ps: with ps; [
tree-sitter-grammars.tree-sitter-rust tree-sitter
])) tree-sitter-grammars.tree-sitter-rust
]
))
]; ];
} }
``` ```

View file

@ -8,9 +8,15 @@ In `nixpkgs`, urxvt is provided by the package `rxvt-unicode`. It can be configu
```nix ```nix
rxvt-unicode.override { rxvt-unicode.override {
configure = { availablePlugins, ... }: { configure =
plugins = with availablePlugins; [ perls resize-font vtwheel ]; { availablePlugins, ... }:
}; {
plugins = with availablePlugins; [
perls
resize-font
vtwheel
];
};
} }
``` ```
@ -20,9 +26,11 @@ In order to add plugins but also keep all default plugins installed, it is possi
```nix ```nix
rxvt-unicode.override { rxvt-unicode.override {
configure = { availablePlugins, ... }: { configure =
plugins = (builtins.attrValues availablePlugins) ++ [ custom-plugin ]; { availablePlugins, ... }:
}; {
plugins = (builtins.attrValues availablePlugins) ++ [ custom-plugin ];
};
} }
``` ```
@ -40,9 +48,11 @@ In addition to `plugins` the options `extraDeps` and `perlDeps` can be used to i
```nix ```nix
rxvt-unicode.override { rxvt-unicode.override {
configure = { availablePlugins, ... }: { configure =
pluginsDeps = [ xsel ]; { availablePlugins, ... }:
}; {
pluginsDeps = [ xsel ];
};
} }
``` ```
@ -50,9 +60,11 @@ rxvt-unicode.override {
```nix ```nix
rxvt-unicode.override { rxvt-unicode.override {
configure = { availablePlugins, ... }: { configure =
perlDeps = with perlPackages; [ AnyEvent ]; { availablePlugins, ... }:
}; {
perlDeps = with perlPackages; [ AnyEvent ];
};
} }
``` ```

View file

@ -3,9 +3,16 @@
WeeChat can be configured to include your choice of plugins, reducing its closure size from the default configuration which includes all available plugins. To make use of this functionality, install an expression that overrides its configuration, such as: WeeChat can be configured to include your choice of plugins, reducing its closure size from the default configuration which includes all available plugins. To make use of this functionality, install an expression that overrides its configuration, such as:
```nix ```nix
weechat.override {configure = ({availablePlugins, ...}: { weechat.override {
plugins = with availablePlugins; [ python perl ]; configure = (
}); { availablePlugins, ... }:
{
plugins = with availablePlugins; [
python
perl
];
}
);
} }
``` ```
@ -16,10 +23,18 @@ The plugins currently available are `python`, `perl`, `ruby`, `guile`, `tcl` and
The Python and Perl plugins allows the addition of extra libraries. For instance, the `inotify.py` script in `weechat-scripts` requires D-Bus or libnotify, and the `fish.py` script requires `pycrypto`. To use these scripts, use the plugin's `withPackages` attribute: The Python and Perl plugins allows the addition of extra libraries. For instance, the `inotify.py` script in `weechat-scripts` requires D-Bus or libnotify, and the `fish.py` script requires `pycrypto`. To use these scripts, use the plugin's `withPackages` attribute:
```nix ```nix
weechat.override { configure = {availablePlugins, ...}: { weechat.override {
plugins = with availablePlugins; [ configure =
(python.withPackages (ps: with ps; [ pycrypto python-dbus ])) { availablePlugins, ... }:
]; {
plugins = with availablePlugins; [
(python.withPackages (
ps: with ps; [
pycrypto
python-dbus
]
))
];
}; };
} }
``` ```
@ -27,23 +42,37 @@ weechat.override { configure = {availablePlugins, ...}: {
In order to also keep all default plugins installed, it is possible to use the following method: In order to also keep all default plugins installed, it is possible to use the following method:
```nix ```nix
weechat.override { configure = { availablePlugins, ... }: { weechat.override {
plugins = builtins.attrValues (availablePlugins // { configure =
python = availablePlugins.python.withPackages (ps: with ps; [ pycrypto python-dbus ]); { availablePlugins, ... }:
}); {
}; } plugins = builtins.attrValues (
availablePlugins
// {
python = availablePlugins.python.withPackages (
ps: with ps; [
pycrypto
python-dbus
]
);
}
);
};
}
``` ```
WeeChat allows to set defaults on startup using the `--run-command`. The `configure` method can be used to pass commands to the program: WeeChat allows to set defaults on startup using the `--run-command`. The `configure` method can be used to pass commands to the program:
```nix ```nix
weechat.override { weechat.override {
configure = { availablePlugins, ... }: { configure =
init = '' { availablePlugins, ... }:
/set foo bar {
/server add libera irc.libera.chat init = ''
''; /set foo bar
}; /server add libera irc.libera.chat
'';
};
} }
``` ```
@ -53,14 +82,18 @@ Additionally, it's possible to specify scripts to be loaded when starting `weech
```nix ```nix
weechat.override { weechat.override {
configure = { availablePlugins, ... }: { configure =
scripts = with pkgs.weechatScripts; [ { availablePlugins, ... }:
weechat-xmpp weechat-matrix-bridge wee-slack {
]; scripts = with pkgs.weechatScripts; [
init = '' weechat-xmpp
/set plugins.var.python.jabber.key "val" weechat-matrix-bridge
''; wee-slack
}; ];
init = ''
/set plugins.var.python.jabber.key "val"
'';
};
} }
``` ```
@ -75,7 +108,10 @@ stdenv.mkDerivation {
url = "https://scripts.tld/your-scripts.tar.gz"; url = "https://scripts.tld/your-scripts.tar.gz";
hash = "..."; hash = "...";
}; };
passthru.scripts = [ "foo.py" "bar.lua" ]; passthru.scripts = [
"foo.py"
"bar.lua"
];
installPhase = '' installPhase = ''
mkdir $out/share mkdir $out/share
cp foo.py $out/share cp foo.py $out/share

View file

@ -15,7 +15,13 @@ Nixpkgs follows the [conventions of GNU autoconf](https://gcc.gnu.org/onlinedocs
In Nixpkgs, these three platforms are defined as attribute sets under the names `buildPlatform`, `hostPlatform`, and `targetPlatform`. They are always defined as attributes in the standard environment. That means one can access them like: In Nixpkgs, these three platforms are defined as attribute sets under the names `buildPlatform`, `hostPlatform`, and `targetPlatform`. They are always defined as attributes in the standard environment. That means one can access them like:
```nix ```nix
{ stdenv, fooDep, barDep, ... }: { {
stdenv,
fooDep,
barDep,
...
}:
{
# ...stdenv.buildPlatform... # ...stdenv.buildPlatform...
} }
``` ```
@ -169,11 +175,13 @@ e.g.
```nix ```nix
{ {
nativeBuildInputs = [ nativeBuildInputs =
meson [
] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ meson
mesonEmulatorHook ]
]; ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
];
} }
``` ```

View file

@ -145,7 +145,7 @@ The list of Nix platform types for which the [Hydra](https://github.com/nixos/hy
```nix ```nix
{ {
meta.platforms = lib.platforms.linux; meta.platforms = lib.platforms.linux;
meta.hydraPlatforms = []; meta.hydraPlatforms = [ ];
} }
``` ```
@ -169,7 +169,12 @@ This means that `broken` can be used to express constraints, for example:
```nix ```nix
{ {
meta.broken = lib.all (map (p: p.meta.broken) [ glibc musl ]); meta.broken = lib.all (
map (p: p.meta.broken) [
glibc
musl
]
);
} }
``` ```

View file

@ -31,7 +31,12 @@ In nixpkgs there is a framework supporting multiple-output derivations. It tries
```nix ```nix
{ {
outputs = [ "bin" "dev" "out" "doc" ]; outputs = [
"bin"
"dev"
"out"
"doc"
];
} }
``` ```

View file

@ -18,7 +18,9 @@ Its value can be accessed as if it was set inside a derivation.
let let
hello = stdenv.mkDerivation { hello = stdenv.mkDerivation {
pname = "hello"; pname = "hello";
src = fetchGit { /* ... */ }; src = fetchGit {
# ...
};
passthru = { passthru = {
foo = "bar"; foo = "bar";

View file

@ -37,7 +37,11 @@ stdenv.mkDerivation {
pname = "libfoo"; pname = "libfoo";
version = "1.2.3"; version = "1.2.3";
# ... # ...
buildInputs = [libbar perl ncurses]; buildInputs = [
libbar
perl
ncurses
];
} }
``` ```
@ -217,7 +221,10 @@ stdenv.mkDerivation rec {
hash = "sha256-viwrS9lnaU8sTGuzK/+L/PlMM/xRRtgVuK5pixVeDEw="; hash = "sha256-viwrS9lnaU8sTGuzK/+L/PlMM/xRRtgVuK5pixVeDEw=";
}; };
nativeBuildInputs = [ makeWrapper pkg-config ]; nativeBuildInputs = [
makeWrapper
pkg-config
];
buildInputs = [ libseccomp ]; buildInputs = [ libseccomp ];
postInstall = '' postInstall = ''
@ -227,12 +234,22 @@ stdenv.mkDerivation rec {
--replace-fail "cp " "cp --no-preserve=mode " --replace-fail "cp " "cp --no-preserve=mode "
wrapProgram $out/bin/solo5-virtio-mkimage \ wrapProgram $out/bin/solo5-virtio-mkimage \
--prefix PATH : ${lib.makeBinPath [ dosfstools mtools parted syslinux ]} --prefix PATH : ${
lib.makeBinPath [
dosfstools
mtools
parted
syslinux
]
}
''; '';
doCheck = true; doCheck = true;
nativeCheckInputs = [ util-linux qemu ]; nativeCheckInputs = [
checkPhase = '' [elided] ''; util-linux
qemu
];
checkPhase = ''[elided] '';
} }
``` ```
@ -272,7 +289,7 @@ This can lead to conflicting dependencies that cannot easily be resolved.
# A propagated dependency # A propagated dependency
```nix ```nix
with import <nixpkgs> {}; with import <nixpkgs> { };
let let
bar = stdenv.mkDerivation { bar = stdenv.mkDerivation {
name = "bar"; name = "bar";
@ -442,8 +459,7 @@ If you pass a function to `mkDerivation`, it will receive as its argument the fi
mkDerivation (finalAttrs: { mkDerivation (finalAttrs: {
pname = "hello"; pname = "hello";
withFeature = true; withFeature = true;
configureFlags = configureFlags = lib.optionals finalAttrs.withFeature [ "--with-feature" ];
lib.optionals finalAttrs.withFeature ["--with-feature"];
}) })
``` ```
@ -460,28 +476,32 @@ various bindings:
```nix ```nix
# `pkg` is the _original_ definition (for illustration purposes) # `pkg` is the _original_ definition (for illustration purposes)
let pkg = let
mkDerivation (finalAttrs: { pkg = mkDerivation (finalAttrs: {
# ... # ...
# An example attribute # An example attribute
packages = []; packages = [ ];
# `passthru.tests` is a commonly defined attribute. # `passthru.tests` is a commonly defined attribute.
passthru.tests.simple = f finalAttrs.finalPackage; passthru.tests.simple = f finalAttrs.finalPackage;
# An example of an attribute containing a function # An example of an attribute containing a function
passthru.appendPackages = packages': passthru.appendPackages =
finalAttrs.finalPackage.overrideAttrs (newSelf: super: { packages':
packages = super.packages ++ packages'; finalAttrs.finalPackage.overrideAttrs (
}); newSelf: super: {
packages = super.packages ++ packages';
}
);
# For illustration purposes; referenced as # For illustration purposes; referenced as
# `(pkg.overrideAttrs(x)).finalAttrs` etc in the text below. # `(pkg.overrideAttrs(x)).finalAttrs` etc in the text below.
passthru.finalAttrs = finalAttrs; passthru.finalAttrs = finalAttrs;
passthru.original = pkg; passthru.original = pkg;
}); });
in pkg in
pkg
``` ```
Unlike the `pkg` binding in the above example, the `finalAttrs` parameter always references the final attributes. For instance `(pkg.overrideAttrs(x)).finalAttrs.finalPackage` is identical to `pkg.overrideAttrs(x)`, whereas `(pkg.overrideAttrs(x)).original` is the same as the original `pkg`. Unlike the `pkg` binding in the above example, the `finalAttrs` parameter always references the final attributes. For instance `(pkg.overrideAttrs(x)).finalAttrs.finalPackage` is identical to `pkg.overrideAttrs(x)`, whereas `(pkg.overrideAttrs(x)).original` is the same as the original `pkg`.
@ -955,7 +975,7 @@ To make GDB find debug information for the `socat` package and its dependencies,
```nix ```nix
let let
pkgs = import ./. { pkgs = import ./. {
config = {}; config = { };
overlays = [ overlays = [
(final: prev: { (final: prev: {
ncurses = prev.ncurses.overrideAttrs { separateDebugInfo = true; }; ncurses = prev.ncurses.overrideAttrs { separateDebugInfo = true; };
@ -974,19 +994,19 @@ let
]; ];
}; };
in in
pkgs.mkShell { pkgs.mkShell {
NIX_DEBUG_INFO_DIRS = "${pkgs.lib.getLib myDebugInfoDirs}/lib/debug"; NIX_DEBUG_INFO_DIRS = "${pkgs.lib.getLib myDebugInfoDirs}/lib/debug";
packages = [ packages = [
pkgs.gdb pkgs.gdb
pkgs.socat pkgs.socat
]; ];
shellHook = '' shellHook = ''
${pkgs.lib.getBin pkgs.gdb}/bin/gdb ${pkgs.lib.getBin pkgs.socat}/bin/socat ${pkgs.lib.getBin pkgs.gdb}/bin/gdb ${pkgs.lib.getBin pkgs.socat}/bin/socat
''; '';
} }
``` ```
This setup works as follows: This setup works as follows:

View file

@ -99,10 +99,12 @@ There are several ways to tweak how Nix handles a package which has been marked
```nix ```nix
{ {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ allowUnfreePredicate =
"roon-server" pkg:
"vscode" builtins.elem (lib.getName pkg) [
]; "roon-server"
"vscode"
];
} }
``` ```
@ -112,7 +114,10 @@ There are several ways to tweak how Nix handles a package which has been marked
```nix ```nix
{ {
allowlistedLicenses = with lib.licenses; [ amd wtfpl ]; allowlistedLicenses = with lib.licenses; [
amd
wtfpl
];
} }
``` ```
@ -120,7 +125,10 @@ There are several ways to tweak how Nix handles a package which has been marked
```nix ```nix
{ {
blocklistedLicenses = with lib.licenses; [ agpl3Only gpl3Only ]; blocklistedLicenses = with lib.licenses; [
agpl3Only
gpl3Only
];
} }
``` ```
@ -158,9 +166,11 @@ There are several ways to tweak how Nix handles a package which has been marked
```nix ```nix
{ {
allowInsecurePredicate = pkg: builtins.elem (lib.getName pkg) [ allowInsecurePredicate =
"ovftool" pkg:
]; builtins.elem (lib.getName pkg) [
"ovftool"
];
} }
``` ```
@ -173,7 +183,9 @@ You can define a function called `packageOverrides` in your local `~/.config/nix
```nix ```nix
{ {
packageOverrides = pkgs: rec { packageOverrides = pkgs: rec {
foo = pkgs.foo.override { /* ... */ }; foo = pkgs.foo.override {
# ...
};
}; };
} }
``` ```
@ -197,23 +209,24 @@ Using `packageOverrides`, it is possible to manage packages declaratively. This
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides =
myPackages = pkgs.buildEnv { pkgs: with pkgs; {
name = "my-packages"; myPackages = pkgs.buildEnv {
paths = [ name = "my-packages";
aspell paths = [
bc aspell
coreutils bc
gdb coreutils
ffmpeg gdb
nix ffmpeg
emscripten nix
jq emscripten
nox jq
silver-searcher nox
]; silver-searcher
];
};
}; };
};
} }
``` ```
@ -221,24 +234,28 @@ To install it into our environment, you can just run `nix-env -iA nixpkgs.myPack
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides =
myPackages = pkgs.buildEnv { pkgs: with pkgs; {
name = "my-packages"; myPackages = pkgs.buildEnv {
paths = [ name = "my-packages";
aspell paths = [
bc aspell
coreutils bc
gdb coreutils
ffmpeg gdb
nix ffmpeg
emscripten nix
jq emscripten
nox jq
silver-searcher nox
]; silver-searcher
pathsToLink = [ "/share" "/bin" ]; ];
pathsToLink = [
"/share"
"/bin"
];
};
}; };
};
} }
``` ```
@ -250,24 +267,32 @@ After building that new environment, look through `~/.nix-profile` to make sure
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; { packageOverrides =
myPackages = pkgs.buildEnv { pkgs: with pkgs; {
name = "my-packages"; myPackages = pkgs.buildEnv {
paths = [ name = "my-packages";
aspell paths = [
bc aspell
coreutils bc
ffmpeg coreutils
nix ffmpeg
emscripten nix
jq emscripten
nox jq
silver-searcher nox
]; silver-searcher
pathsToLink = [ "/share/man" "/share/doc" "/bin" ]; ];
extraOutputsToInstall = [ "man" "doc" ]; pathsToLink = [
"/share/man"
"/share/doc"
"/bin"
];
extraOutputsToInstall = [
"man"
"doc"
];
};
}; };
};
} }
``` ```
@ -275,33 +300,42 @@ This provides us with some useful documentation for using our packages. However
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; rec { packageOverrides =
myProfile = writeText "my-profile" '' pkgs: with pkgs; rec {
export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin myProfile = writeText "my-profile" ''
export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
''; export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
myPackages = pkgs.buildEnv { '';
name = "my-packages"; myPackages = pkgs.buildEnv {
paths = [ name = "my-packages";
(runCommand "profile" {} '' paths = [
mkdir -p $out/etc/profile.d (runCommand "profile" { } ''
cp ${myProfile} $out/etc/profile.d/my-profile.sh mkdir -p $out/etc/profile.d
'') cp ${myProfile} $out/etc/profile.d/my-profile.sh
aspell '')
bc aspell
coreutils bc
ffmpeg coreutils
man ffmpeg
nix man
emscripten nix
jq emscripten
nox jq
silver-searcher nox
]; silver-searcher
pathsToLink = [ "/share/man" "/share/doc" "/bin" "/etc" ]; ];
extraOutputsToInstall = [ "man" "doc" ]; pathsToLink = [
"/share/man"
"/share/doc"
"/bin"
"/etc"
];
extraOutputsToInstall = [
"man"
"doc"
];
};
}; };
};
} }
``` ```
@ -326,43 +360,54 @@ Configuring GNU info is a little bit trickier than man pages. To work correctly,
```nix ```nix
{ {
packageOverrides = pkgs: with pkgs; rec { packageOverrides =
myProfile = writeText "my-profile" '' pkgs: with pkgs; rec {
export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin myProfile = writeText "my-profile" ''
export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man export PATH=$HOME/.nix-profile/bin:/nix/var/nix/profiles/default/bin:/sbin:/bin:/usr/sbin:/usr/bin
export INFOPATH=$HOME/.nix-profile/share/info:/nix/var/nix/profiles/default/share/info:/usr/share/info export MANPATH=$HOME/.nix-profile/share/man:/nix/var/nix/profiles/default/share/man:/usr/share/man
''; export INFOPATH=$HOME/.nix-profile/share/info:/nix/var/nix/profiles/default/share/info:/usr/share/info
myPackages = pkgs.buildEnv {
name = "my-packages";
paths = [
(runCommand "profile" {} ''
mkdir -p $out/etc/profile.d
cp ${myProfile} $out/etc/profile.d/my-profile.sh
'')
aspell
bc
coreutils
ffmpeg
man
nix
emscripten
jq
nox
silver-searcher
texinfoInteractive
];
pathsToLink = [ "/share/man" "/share/doc" "/share/info" "/bin" "/etc" ];
extraOutputsToInstall = [ "man" "doc" "info" ];
postBuild = ''
if [ -x $out/bin/install-info -a -w $out/share/info ]; then
shopt -s nullglob
for i in $out/share/info/*.info $out/share/info/*.info.gz; do
$out/bin/install-info $i $out/share/info/dir
done
fi
''; '';
myPackages = pkgs.buildEnv {
name = "my-packages";
paths = [
(runCommand "profile" { } ''
mkdir -p $out/etc/profile.d
cp ${myProfile} $out/etc/profile.d/my-profile.sh
'')
aspell
bc
coreutils
ffmpeg
man
nix
emscripten
jq
nox
silver-searcher
texinfoInteractive
];
pathsToLink = [
"/share/man"
"/share/doc"
"/share/info"
"/bin"
"/etc"
];
extraOutputsToInstall = [
"man"
"doc"
"info"
];
postBuild = ''
if [ -x $out/bin/install-info -a -w $out/share/info ]; then
shopt -s nullglob
for i in $out/share/info/*.info $out/share/info/*.info.gz; do
$out/bin/install-info $i $out/share/info/dir
done
fi
'';
};
}; };
};
} }
``` ```

View file

@ -136,7 +136,12 @@ self: super:
For BLAS/LAPACK switching to work correctly, all packages must depend on `blas` or `lapack`. This ensures that only one BLAS/LAPACK library is used at one time. There are two versions of BLAS/LAPACK currently in the wild, `LP64` (integer size = 32 bits) and `ILP64` (integer size = 64 bits). The attributes `blas` and `lapack` are `LP64` by default. Their `ILP64` version are provided through the attributes `blas-ilp64` and `lapack-ilp64`. Some software needs special flags or patches to work with `ILP64`. You can check if `ILP64` is used in Nixpkgs with `blas.isILP64` and `lapack.isILP64`. Some software does NOT work with `ILP64`, and derivations need to specify an assertion to prevent this. You can prevent `ILP64` from being used with the following: For BLAS/LAPACK switching to work correctly, all packages must depend on `blas` or `lapack`. This ensures that only one BLAS/LAPACK library is used at one time. There are two versions of BLAS/LAPACK currently in the wild, `LP64` (integer size = 32 bits) and `ILP64` (integer size = 64 bits). The attributes `blas` and `lapack` are `LP64` by default. Their `ILP64` version are provided through the attributes `blas-ilp64` and `lapack-ilp64`. Some software needs special flags or patches to work with `ILP64`. You can check if `ILP64` is used in Nixpkgs with `blas.isILP64` and `lapack.isILP64`. Some software does NOT work with `ILP64`, and derivations need to specify an assertion to prevent this. You can prevent `ILP64` from being used with the following:
```nix ```nix
{ stdenv, blas, lapack, ... }: {
stdenv,
blas,
lapack,
...
}:
assert (!blas.isILP64) && (!lapack.isILP64); assert (!blas.isILP64) && (!lapack.isILP64);

View file

@ -13,27 +13,38 @@ It is used to override the arguments passed to a function.
Example usages: Example usages:
```nix ```nix
pkgs.foo.override { arg1 = val1; arg2 = val2; /* ... */ } pkgs.foo.override {
arg1 = val1;
arg2 = val2; # ...
}
``` ```
It's also possible to access the previous arguments. It's also possible to access the previous arguments.
```nix ```nix
pkgs.foo.override (previous: { arg1 = previous.arg1; /* ... */ }) pkgs.foo.override (previous: {
arg1 = previous.arg1; # ...
})
``` ```
<!-- TODO: move below programlisting to a new section about extending and overlays and reference it --> <!-- TODO: move below programlisting to a new section about extending and overlays and reference it -->
```nix ```nix
import pkgs.path { overlays = [ (self: super: { import pkgs.path {
foo = super.foo.override { barSupport = true ; }; overlays = [
})];} (self: super: {
foo = super.foo.override { barSupport = true; };
})
];
}
``` ```
```nix ```nix
{ {
mypkg = pkgs.callPackage ./mypkg.nix { mypkg = pkgs.callPackage ./mypkg.nix {
mydep = pkgs.mydep.override { /* ... */ }; mydep = pkgs.mydep.override {
# ...
};
}; };
} }
``` ```
@ -55,9 +66,11 @@ Example usages:
```nix ```nix
{ {
helloBar = pkgs.hello.overrideAttrs (finalAttrs: previousAttrs: { helloBar = pkgs.hello.overrideAttrs (
pname = previousAttrs.pname + "-bar"; finalAttrs: previousAttrs: {
}); pname = previousAttrs.pname + "-bar";
}
);
} }
``` ```
@ -107,7 +120,7 @@ Example usage:
url = "ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2"; url = "ftp://alpha.gnu.org/gnu/sed/sed-4.2.2-pre.tar.bz2";
hash = "sha256-MxBJRcM2rYzQYwJ5XKxhXTQByvSg5jZc5cSHEZoB2IY="; hash = "sha256-MxBJRcM2rYzQYwJ5XKxhXTQByvSg5jZc5cSHEZoB2IY=";
}; };
patches = []; patches = [ ];
}); });
} }
``` ```
@ -128,8 +141,15 @@ Example usage:
```nix ```nix
{ {
f = { a, b }: { result = a+b; }; f =
c = lib.makeOverridable f { a = 1; b = 2; }; { a, b }:
{
result = a + b;
};
c = lib.makeOverridable f {
a = 1;
b = 2;
};
} }
``` ```