zoxide: 0.4.1 -> 0.4.3
https://github.com/ajeetdsouza/zoxide/compare/v0.4.1...v0.4.3 Also removes unnecessary `rec` and `stdenv`.
This commit is contained in:
parent
6d775500f7
commit
ee33c731b5
1 changed files with 12 additions and 9 deletions
|
@ -1,28 +1,31 @@
|
||||||
{ stdenv
|
{ lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, withFzf ? true, fzf
|
, withFzf ? true
|
||||||
|
, fzf
|
||||||
}:
|
}:
|
||||||
|
let
|
||||||
rustPlatform.buildRustPackage rec {
|
version = "0.4.3";
|
||||||
|
in
|
||||||
|
rustPlatform.buildRustPackage {
|
||||||
pname = "zoxide";
|
pname = "zoxide";
|
||||||
version = "0.4.1";
|
inherit version;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ajeetdsouza";
|
owner = "ajeetdsouza";
|
||||||
repo = "zoxide";
|
repo = "zoxide";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1zfk9y5f12h2d5zwf2z8c95xwhbhc6ayv971875fbxgz1nd8vqb6";
|
sha256 = "1ghdal6pqkp56rqawhj26ch1x4cvnjj032xz3626aiddqgn134zj";
|
||||||
};
|
};
|
||||||
|
|
||||||
postPatch = stdenv.lib.optionalString withFzf ''
|
postPatch = lib.optionalString withFzf ''
|
||||||
substituteInPlace src/fzf.rs \
|
substituteInPlace src/fzf.rs \
|
||||||
--replace '"fzf"' '"${fzf}/bin/fzf"'
|
--replace '"fzf"' '"${fzf}/bin/fzf"'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
cargoSha256 = "0z0p3cxxazw19bmk3zw7z2q93p00ywsa2cz1jhy78mn5pq1v95rd";
|
cargoSha256 = "0klnjmda77bq9i9f0rz48jzaw4rcf7hafcjjpb0i570d7hlxnwsr";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A fast cd command that learns your habits";
|
description = "A fast cd command that learns your habits";
|
||||||
homepage = "https://github.com/ajeetdsouza/zoxide";
|
homepage = "https://github.com/ajeetdsouza/zoxide";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
|
|
Loading…
Reference in a new issue