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
This commit is contained in:
Klaus T. Aehlig
2025-03-12 11:04:38 +01:00
parent 742e1fdecb
commit b741bba0f8
+1
View File
@@ -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"