git.delta.rocks / jrsonnet / refs/commits / ad7852dc047c

difftreelog

source

pkgs/fleet.nix363 Bsourcehistory
1{craneLib}:2craneLib.buildPackage rec {3  pname = "fleet";45  src = craneLib.cleanCargoSource (craneLib.path ../.);6  strictDeps = true;78  cargoExtraArgs = "--locked -p ${pname}";910  postInstall = ''11    for shell in bash fish zsh; do12      installShellCompletion --cmd fleet \13        --$shell <($out/bin/fleet complete --shell $shell --print)14    done15  '';16}