2022-07-24 06:07:08 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "tere";
|
2022-10-15 18:10:12 +00:00
|
|
|
version = "1.3.0";
|
2022-07-24 06:07:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mgunyho";
|
|
|
|
repo = "tere";
|
|
|
|
rev = "v${version}";
|
2022-10-15 18:10:12 +00:00
|
|
|
sha256 = "sha256-jousyoro1Mn1+yBzUkGxW7/zbNvF7+Y4/WLRj99Iuy0=";
|
2022-07-24 06:07:08 +00:00
|
|
|
};
|
|
|
|
|
2022-10-15 18:10:12 +00:00
|
|
|
cargoSha256 = "sha256-hMAxKijmlckkCtQZiC5ubaZQKU2m99gL/MkYoU7zQxU=";
|
2022-10-17 03:47:06 +00:00
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
rm .cargo/config.toml;
|
|
|
|
'';
|
2022-07-24 06:07:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A faster alternative to cd + ls";
|
|
|
|
homepage = "https://github.com/mgunyho/tere";
|
|
|
|
license = licenses.eupl12;
|
|
|
|
maintainers = with maintainers; [ ProducerMatt ];
|
|
|
|
};
|
|
|
|
}
|