Commit b741bba0 authored by Klaus T. Aehlig's avatar Klaus T. Aehlig
Browse files

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
parent 742e1fde
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"