nixpkgs/pkgs/tools/misc/broot/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

99 lines
2.6 KiB
Nix
Raw Normal View History

2021-04-23 09:00:26 +02:00
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, installShellFiles
, makeWrapper
2021-05-12 09:46:49 +02:00
, pkg-config
, libgit2
, oniguruma
, libiconv
2023-12-22 12:13:47 +01:00
, Foundation
, Security
, xorg
2021-05-12 09:46:49 +02:00
, zlib
, buildPackages
, withClipboard ? false
}:
2019-02-13 12:39:22 +01:00
rustPlatform.buildRustPackage rec {
2019-03-15 22:38:44 +01:00
pname = "broot";
version = "1.32.0";
2019-02-13 12:39:22 +01:00
src = fetchFromGitHub {
owner = "Canop";
repo = pname;
rev = "v${version}";
hash = "sha256-CFrWX40VpkMySDYoci+i7CrypT/dIW3rg/jzRU5V5Tc=";
2019-02-13 12:39:22 +01:00
};
cargoHash = "sha256-QCCTqP3GNfg/zRXqjpDSnFSwEF0116qtSZ0yYkLbjgQ=";
2019-02-13 12:39:22 +01:00
nativeBuildInputs = [
installShellFiles
2021-05-12 09:46:49 +02:00
makeWrapper
pkg-config
];
buildInputs = [ libgit2 oniguruma xorg.libxcb ] ++ lib.optionals stdenv.isDarwin [
2023-12-22 12:13:47 +01:00
Foundation
libiconv
Security
zlib
];
buildFeatures = lib.optionals withClipboard [ "clipboard" ];
2021-05-12 09:46:49 +02:00
RUSTONIG_SYSTEM_LIBONIG = true;
postPatch = ''
2020-06-26 13:10:20 +02:00
# Fill the version stub in the man page. We can't fill the date
# stub reproducibly.
substitute man/page man/broot.1 \
--replace "#version" "${version}"
'';
postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) ''
# Install shell function for bash.
${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function bash > br.bash
install -Dm0444 -t $out/etc/profile.d br.bash
# Install shell function for zsh.
${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function zsh > br.zsh
install -Dm0444 br.zsh $out/share/zsh/site-functions/br
# Install shell function for fish
${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function fish > br.fish
install -Dm0444 -t $out/share/fish/vendor_functions.d br.fish
'' + ''
# install shell completion files
OUT_DIR=$releaseDir/build/broot-*/out
installShellCompletion --bash $OUT_DIR/{br,broot}.bash
installShellCompletion --fish $OUT_DIR/{br,broot}.fish
installShellCompletion --zsh $OUT_DIR/{_br,_broot}
2020-06-26 13:10:20 +02:00
installManPage man/broot.1
# Do not nag users about installing shell integration, since
# it is impure.
wrapProgram $out/bin/broot \
--set BR_INSTALL no
'';
2021-12-03 13:15:33 +01:00
doInstallCheck = true;
installCheckPhase = ''
$out/bin/broot --version | grep "${version}"
'';
meta = with lib; {
2019-02-13 12:39:22 +01:00
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
2019-03-15 22:38:44 +01:00
homepage = "https://dystroy.org/broot/";
2021-12-03 12:37:05 +01:00
changelog = "https://github.com/Canop/broot/releases/tag/v${version}";
2021-08-01 17:22:09 +02:00
maintainers = with maintainers; [ dywedir ];
2019-02-13 12:39:22 +01:00
license = with licenses; [ mit ];
2023-11-27 02:17:53 +01:00
mainProgram = "broot";
2019-02-13 12:39:22 +01:00
};
}