nixpkgs/pkgs/tools/misc/broot/default.nix
Evan Stoll 22674e9b43 broot: fix hardlinks during postPatch phase
- add coreutils dependency
2020-01-12 15:55:56 -05:00

28 lines
789 B
Nix

{ stdenv, rustPlatform, fetchFromGitHub, coreutils }:
rustPlatform.buildRustPackage rec {
pname = "broot";
version = "0.10.2";
src = fetchFromGitHub {
owner = "Canop";
repo = pname;
rev = "v${version}";
sha256 = "1wisqb4cqdgsnjvmpgxbzs9zcw6npqw1kqxxs8mn33sxlikhbf2l";
};
cargoSha256 = "09gnyj97akychin1axp9kcww3c04xx7x1qnplhs2yxfki62r4y2b";
postPatch = ''
substituteInPlace src/verb_store.rs --replace '"/bin/' '"${coreutils}/bin/'
'';
meta = with stdenv.lib; {
description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands";
homepage = "https://dystroy.org/broot/";
maintainers = with maintainers; [ magnetophon ];
license = with licenses; [ mit ];
platforms = platforms.all;
};
}