os/doc/outputs/pkgs.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

119 lines
3.2 KiB
Markdown
Raw Normal View History

2021-02-14 02:38:20 +00:00
# Packages
2023-01-28 20:49:10 +00:00
2021-04-19 02:26:27 +00:00
Similar to [modules](./modules.md), the pkgs directory mirrors the upstream
2021-02-14 02:38:20 +00:00
[nixpkgs/pkgs][pkgs], and for the same reason; if you ever want to upstream
your package, it's as simple as dropping it into the nixpkgs/pkgs directory.
The only minor difference is that, instead of adding the `callPackage` call to
`all-packages.nix`, you just add it the the _default.nix_ in this directory,
which is defined as a simple overlay.
2021-06-03 19:25:06 +00:00
All the packages are exported via `packages.<system>.<pkg-name>`, for all
2021-02-14 02:38:20 +00:00
the supported systems listed in the package's `meta.platforms` attribute.
And, as usual, every package in the overlay is also available to any NixOS
2021-04-19 02:26:27 +00:00
[host](../concepts/hosts.md).
2021-02-14 02:38:20 +00:00
2023-01-28 20:49:10 +00:00
Another convenient difference is that it is possible to use
[nvfetcher](https://github.com/berberman/nvfetcher) to keep packages up to
2021-09-02 09:37:21 +00:00
date.
This is best understood by the simple example below.
2021-02-14 02:38:20 +00:00
## Example
2023-01-28 20:49:10 +00:00
It is possible to specify sources separately to keep them up to date semi
2021-09-02 09:37:21 +00:00
automatically.
The basic rules are specified in pkgs/sources.toml:
2023-01-28 20:49:10 +00:00
2021-09-02 09:37:21 +00:00
```toml
# nvfetcher.toml
[libinih]
src.github = "benhoyt/inih"
fetch.github = "benhoyt/inih"
```
2023-01-28 20:49:10 +00:00
After changes to this file as well as to update the packages specified in there run
2021-09-02 09:37:21 +00:00
nvfetcher (for more details see [nvfetcher](https://github.com/berberman/nvfetcher)).
The pkgs overlay is managed in
pkgs/default.nix:
2023-01-28 20:49:10 +00:00
2021-09-02 09:37:21 +00:00
```nix
final: prev: {
# keep sources first, this makes sources available to the pkgs
sources = prev.callPackage (import ./_sources/generated.nix) { };
# then, call packages with `final.callPackage`
libinih = prev.callPackage ./development/libraries/libinih { };
}
```
Lastly the example package is in
2021-02-14 02:38:20 +00:00
pkgs/development/libraries/libinih/default.nix:
2023-01-28 20:49:10 +00:00
2021-02-14 02:38:20 +00:00
```nix
2021-09-02 09:37:21 +00:00
{ stdenv, meson, ninja, lib, sources, ... }:
2021-02-14 02:38:20 +00:00
stdenv.mkDerivation {
pname = "libinih";
2021-09-02 09:37:21 +00:00
# version will resolve to the latest available on gitub
inherit (sources.libinih) version src;
2021-02-14 02:38:20 +00:00
buildInputs = [ meson ninja ];
2021-02-14 02:38:20 +00:00
# ...
2021-02-14 02:38:20 +00:00
}
```
2021-09-02 09:37:21 +00:00
## Migration from flake based approach
2023-01-28 20:49:10 +00:00
2021-09-02 09:37:21 +00:00
Previous to nvfetcher it was possible to manage sources via a pkgs/flake.nix, the main changes from there are that sources where in the attribute "srcs" (now "sources") and the contents of the sources where slightly different.
In order to switch to the new system, rewrite pkgs/flake.nix to a pkgs/sources.toml file using the documentation of nvfetcher,
2023-01-28 20:49:10 +00:00
add the line that calls the sources at the beginning of pkgs/default.nix, and
2021-09-02 09:37:21 +00:00
accomodate the small changes in the packages as can be seen from the example.
The example package looked like:
2021-02-14 02:38:20 +00:00
pkgs/flake.nix:
2023-01-28 20:49:10 +00:00
```nix
{
description = "Package sources";
inputs = {
libinih.url = "github:benhoyt/inih/r53";
libinih.flake = false;
};
}
```
2021-09-02 09:37:21 +00:00
pkgs/default.nix:
2023-01-28 20:49:10 +00:00
2021-09-02 09:37:21 +00:00
```nix
final: prev: {
# then, call packages with `final.callPackage`
libinih = prev.callPackage ./development/libraries/libinih { };
}
```
pkgs/development/libraries/libinih/default.nix:
2023-01-28 20:49:10 +00:00
2021-09-02 09:37:21 +00:00
```nix
{ stdenv, meson, ninja, lib, srcs, ... }:
let inherit (srcs) libinih; in
stdenv.mkDerivation {
pname = "libinih";
# version will resolve to 53, as specified in the flake.nix file
inherit (libinih) version;
src = libinih;
buildInputs = [ meson ninja ];
# ...
}
```
2021-02-14 02:38:20 +00:00
[pkgs]: https://github.com/NixOS/nixpkgs/tree/master/pkgs