mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 11:44:07 +00:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
78 lines
2.0 KiB
Nix
78 lines
2.0 KiB
Nix
{ lib, stdenv
|
|
, rustPlatform
|
|
, fetchCrate
|
|
, installShellFiles
|
|
, makeWrapper
|
|
, coreutils
|
|
, libiconv
|
|
, zlib
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "broot";
|
|
version = "1.1.10";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "04nidx43w4nnccgbrw30wg9ai8p7hbklxpn1gc6gr2325yhqvwhl";
|
|
};
|
|
|
|
cargoHash = "sha256-4F9HIQ1BQx4EikyH0DwlDAkYIeUJJbMsj7ZX23QD+K8=";
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
installShellFiles
|
|
];
|
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [
|
|
libiconv
|
|
Security
|
|
zlib
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/verb/builtin.rs --replace '"/bin/' '"${coreutils}/bin/'
|
|
|
|
# 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 = ''
|
|
# Do not nag users about installing shell integration, since
|
|
# it is impure.
|
|
wrapProgram $out/bin/broot \
|
|
--set BR_INSTALL no
|
|
|
|
# Install shell function for bash.
|
|
$out/bin/broot --print-shell-function bash > br.bash
|
|
install -Dm0444 -t $out/etc/profile.d br.bash
|
|
|
|
# Install shell function for zsh.
|
|
$out/bin/broot --print-shell-function zsh > br.zsh
|
|
install -Dm0444 br.zsh $out/share/zsh/site-functions/br
|
|
|
|
# Install shell function for fish
|
|
$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}
|
|
|
|
installManPage man/broot.1
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
|
|
homepage = "https://dystroy.org/broot/";
|
|
maintainers = with maintainers; [ danieldk ];
|
|
license = with licenses; [ mit ];
|
|
};
|
|
}
|