Translations:Nix (package manager)/1/en

Revision as of 21:04, 14 June 2025 by FuzzyBot (talk | contribs) (FuzzyBot moved page Translations:Nix package manager/1/en to Translations:Nix (package manager)/1/en without leaving a redirect: Part of translatable page "Nix package manager")

Nix is a package manager and build system that parses reproducible build instructions specified in the Nix Expression Language, a pure functional language with lazy evaluation. Nix expressions are pure functions[1]taking dependencies as arguments and producing a derivation specifying a reproducible build environment for the package. Nix stores the results of the build in unique addresses specified by a hash of the complete dependency tree, creating an immutable package store (aka the nix store) that allows for atomic upgrades, rollbacks and concurrent installation of different versions of a package, essentially eliminating dependency hell.

  1. Values cannot change during computation. Functions always produce the same output if their input does not change.