Nixpkgs/Create and debug packages: Difference between revisions
imported>Hypnosis2839 m →Packages from source code: minor cleanup, fix command name |
m →Using nix-shell for package development: Improve grammar in note about preConfigurePhase |
||
(11 intermediate revisions by 7 users not shown) | |||
Line 28: | Line 28: | ||
There are different steps here depending on whether you're building from source or packaging an existing binary. There are some common steps too. | There are different steps here depending on whether you're building from source or packaging an existing binary. There are some common steps too. | ||
=== | === Package from source code === | ||
# Read the repo build instructions | # Read the repo build instructions and CI scripts (for example, on GitHub, these are located in <code>.github/workflows</code>). | ||
# Look in nixpkgs for a package with a similar build process to use as reference | # Look in nixpkgs for a package with a similar build process to use as reference. For example, if you're packaging a project written in Go, find a package for an existing Go application. Each language has its own supporting Nix functions and a more or less standard way of dealing with things. For example, [https://nixos.org/manual/nixpkgs/stable/#sec-language-go Go] has <code>buildGoModule</code>. [https://nixos.org/manual/nixpkgs/stable/#rust Rust] has <code>buildRustPackage</code>. [https://nixos.org/manual/nixpkgs/stable/#python Python] has <code>buildPythonApplication</code>. [https://nixos.org/manual/nixpkgs/stable/#node.js Node.js] has <code>node2nix</code>, <code>yarn2nix</code>, etc. There are also specific functions for wrapping e.g. [https://nixos.org/manual/nixpkgs/stable/#sec-language-gnome GNOME] applications (<code>wrapGAppsHook</code>), or [https://nixos.org/manual/nixpkgs/stable/#sec-language-qt Qt] apps (<code>libsForQt5</code>, <code>wrapQtAppsHook</code>). Refer to the [https://nixos.org/manual/nixpkgs/stable/#chap-language-support language support chapter in the nixpkgs manual]. | ||
# If there isn't a specific | # If there isn't a specific builder for the language, use <code>stdenv.mkDerivation</code> directly, which has built-in support for GNU make (and other build systems, provided you add the necessary <code>nativeBuildInputs</code>). | ||
# Figure out at least some dependencies from the project repo | # Figure out at least some dependencies from the project repo. See if they're available in nixpkgs (<code>nix search some-library</code> or <code>nix-locate --top-level lib/somelibrary.so</code>). If any dependency is missing you'll need to package that as well. | ||
# | # Create your derivation in <code>default.nix</code> in some empty local directory. | ||
# At the top of the derivation, temporarily add <code>with import <nixpkgs> {};</code>. For now, don't worry too much about declaring every dependency as a parameter<!-- TODO clarify. "parameter of the default build function"? -->, to save time. | |||
# At the top of | # Build the package with <code>nix-build</code>. Iterate on tweaking the derivation and rebuilding until it succeeds. | ||
# Build the package with <code>nix build | # For large projects with long compile times, you can use <code>nix-shell</code> instead to [https://nixos.org/manual/nixpkgs/stable/#sec-building-stdenv-package-in-nix-shell run the individual phases]. | ||
# | # At this stage, you may encounter some build quirks of the project. Compile-time errors will hopefully explain what you're missing. For example [https://github.com/NixOS/nixpkgs/blob/643ce4bd0f057bc0b90f0faebeb83a3b14f01674/pkgs/tools/package-management/micromamba/default.nix#L6-L10 micromamba needs a specialized build of libsolv]. | ||
# At this stage, you may encounter some build | |||
# Read on below for further steps. | # Read on below for further steps. | ||
Line 52: | Line 51: | ||
=== Both source code packages and binary packages === | === Both source code packages and binary packages === | ||
# Once you have the package building successfully, | # Once you have the package building successfully, test the output. Ensure the build completes using<code>nix-build</code>, then run <code>result/bin/<executableName></code>. Test as much functionality of the application as you can to ensure that it works as intended. | ||
# Now that your package builds and runs, it's time to move it to nixpkgs. Read [https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md nixpkgs/CONTRIBUTING.md], make sure your package is up to the standards e.g. add a suitable [https://nixos.org/manual/nixpkgs/stable/#sec-standard-meta-attributes <code>meta</code> section]. | # Now that your package builds and runs, it's time to move it to nixpkgs. Read [https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md nixpkgs/CONTRIBUTING.md], make sure your package is up to the standards e.g. add a suitable [https://nixos.org/manual/nixpkgs/stable/#sec-standard-meta-attributes <code>meta</code> section]. | ||
# Git clone https://github.com/NixOS/nixpkgs , figure out the best category / directory for the application (within https://github.com/NixOS/nixpkgs/tree/master/pkgs/ ), create the directory for your application, and move your default.nix there. | # Git clone https://github.com/NixOS/nixpkgs, figure out the best category / directory for the application (within https://github.com/NixOS/nixpkgs/tree/master/pkgs/), create the directory for your application, and move your default.nix there. | ||
# If you used <code>with import <nixpkgs> {};</code> to iterate more quickly, now is the time to replace that with the actual dependencies as an attribute set at the beginning of the file e.g. <code>{ lib, stdenv, fetchFromGitHub }:</code> | # If you used <code>with import <nixpkgs> {};</code> to iterate more quickly, now is the time to replace that with the actual dependencies as an attribute set at the beginning of the file e.g. <code>{ lib, stdenv, fetchFromGitHub }:</code> | ||
# Add the package to the top level declaration of packages. Most of the time this will be https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix . | # Add the package to the top level declaration of packages. Most of the time this will be https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/all-packages.nix . | ||
# If this is your first package in nixpkgs, add yourself in https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix | # If this is your first package in nixpkgs, add yourself in https://github.com/NixOS/nixpkgs/blob/master/maintainers/maintainer-list.nix in a separate commit. | ||
# Read on about the final steps of branching and sending your PR in https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md . | # Read on about the final steps of branching and sending your PR in https://github.com/NixOS/nixpkgs/blob/master/CONTRIBUTING.md . | ||
== How to install from the local repository == | == How to install from the local repository == | ||
Line 199: | Line 197: | ||
You would have seen the dependencies downloading, but the ''bc-build'' directory remains empty. The build system would next invoke a builder with some arguments. You can obtain the exact name of the builder (usually '''bash''') and the arguments '''args''' of the builder (typically a shell script) by checking the corresponding value in: | You would have seen the dependencies downloading, but the ''bc-build'' directory remains empty. The build system would next invoke a builder with some arguments. You can obtain the exact name of the builder (usually '''bash''') and the arguments '''args''' of the builder (typically a shell script) by checking the corresponding value in: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ nix show | $ nix derivation show $(nix-instantiate .) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 218: | Line 216: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ export out=~/tmpdev/bc-build/out | $ export out=~/tmpdev/bc-build/out | ||
$ set -x # Optional: it prints all commands, can be practical to debug | $ set -x # Optional: it prints all commands, can be practical to debug | ||
$ set +e # Optional: do not quit the shell on simple errors, Ctrl-C,... | $ set +e # Optional: do not quit the shell on simple errors, Ctrl-C,... | ||
Line 225: | Line 222: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
To only run some specific phases: | To only run some specific phases, use runPhase: | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
$ | # Syntax: runPhase *phase* | ||
$ runPhase unpackPhase | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 251: | Line 249: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{Note| | {{Note|You do not need to run $preConfigurePhase explicitly, as it will already be run implicitly when running configurePhase.}} | ||
To list all functions which are declared in '''set''': | To list all functions which are declared in '''set''': | ||
Line 373: | Line 371: | ||
Tip: A git repository can be used for snapshotting attempts at building the package. This also makes it easy to generate patches, should you need to. | Tip: A git repository can be used for snapshotting attempts at building the package. This also makes it easy to generate patches, should you need to. | ||
== Adding custom libraries and dependencies to a package == | |||
If you are packaging a dependency, such as a library used by applications for them to compile their code, you might have found you'd like to test if the derivation file installs correctly and can be used by other software. | |||
In order to do this, you'll need to make a simple program that references the library, make a derivation for this program, then add the dependency. For example: | |||
Your program to test the library: | |||
<syntaxhighlight lang="nix"> | |||
{ | |||
pkgs ? import <nixpkgs> { | |||
overlays = [ | |||
(final: prev: { | |||
my-library = prev.callPackage ./my-library.nix { }; | |||
}) | |||
]; | |||
}, | |||
}: | |||
pkgs.callPackage ( | |||
{ | |||
stdenv, | |||
hello, | |||
pkg-config, | |||
my-library, | |||
}: | |||
stdenv.mkDerivation { | |||
pname = "something"; | |||
version = "1"; | |||
strictDeps = true; | |||
# host/target agnostic programs | |||
depsBuildBuild = [ | |||
hello | |||
]; | |||
# compilers & linkers & dependecy finding programs | |||
nativeBuildInputs = [ | |||
pkg-config | |||
]; | |||
# libraries | |||
buildInputs = [ | |||
my-library | |||
]; | |||
} | |||
) { } | |||
</syntaxhighlight> | |||
== nix channels == | == nix channels == | ||
Line 419: | Line 461: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Formatting Packages with | == Formatting Packages with nixfmt == | ||
It is "good practice" to format packages in a way that following changed will create as minimal diffs as possible. The formatter [https://github.com/ | It is "good practice" to format packages in a way that following changed will create as minimal diffs as possible. The formatter [https://github.com/NixOS/nixfmt nixfmt] can be used for that. | ||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
nix-shell -p nixfmt-rfc-style --run 'nixfmt path/to/default.nix' | |||
</syntaxhighlight> | </syntaxhighlight> | ||