를 확인해 보세요. 에서 제공하는 Nix 플레이크를 발견하고 게시할 수 있는 최고의 장소입니다.

We use a single, first-party analytics cookie to focus our limited time and energy on the most important documentation. Check out our privacy policy .

Pinning dependencies

Fixing a Nix dependency to a specific revision

Concepts / Pinning dependencies

We recommend starting with the Nix quick start and consulting concept docs primarily for clarification. Feel free to click x to the right to disable this notification on all concept docs.

Pinning a dependency refers to the act of specifying an exact revision for Nix to use. This is particularly interesting in relation to Nix’s reproducibility guarantees.

When you pin Nix dependencies to a specific revision you are guaranteed to get the same outputs of builds, based on the same inputs, which cannot change. This is particularly useful when sharing environments between different developers, or between a development and production environment.

Pinning dependencies can be done in the inputs section of the flakes file:

flake.nix
{
inputs = {
nixpkgs.url = "git+https://github:nixos/nixpkgs?rev=fdc8ef970de2b4634e1b3dca296e1ed918459a9e";
};
}

Was this page helpful?