From b741bba0f86a6c7939b5e2e10f4a1564a4146b64 Mon Sep 17 00:00:00 2001 From: "Klaus T. Aehlig" Date: Wed, 12 Mar 2025 11:04:38 +0100 Subject: [PATCH] justbuild: also install just-lock Since version 1.5, justbuild also provides a new tool called just-lock, see release notes[1]. Currently, the package already installs the corresponding man pages, but not the tool itself. Fix this, by installing the tool as well. [1] https://github.com/just-buildsystem/justbuild/blob/21d9afbfb744596f0e7646c386870e78dbeab922/CHANGELOG.md?plain=1#L15-L17 --- pkgs/by-name/ju/justbuild/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ju/justbuild/package.nix b/pkgs/by-name/ju/justbuild/package.nix index e62ef9140ef4..23166ba8c212 100644 --- a/pkgs/by-name/ju/justbuild/package.nix +++ b/pkgs/by-name/ju/justbuild/package.nix @@ -160,6 +160,7 @@ stdenv.mkDerivation rec { install -m 755 -Dt "$out/bin" "../build/out/bin/just-mr" install -m 755 -DT "bin/just-import-git.py" "$out/bin/just-import-git" install -m 755 -DT "bin/just-deduplicate-repos.py" "$out/bin/just-deduplicate-repos" + install -m 755 -DT "bin/just-lock.py" "$out/bin/just-lock" mkdir -p "$out/share/bash-completion/completions" install -m 0644 ./share/just_complete.bash "$out/share/bash-completion/completions/just"