2021-01-17 04:20:00 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2018-12-26 19:49:24 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "mcfly";
|
2023-03-07 04:20:00 +00:00
|
|
|
version = "0.8.0";
|
2018-12-26 19:49:24 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cantino";
|
|
|
|
repo = "mcfly";
|
2020-01-16 19:33:13 +00:00
|
|
|
rev = "v${version}";
|
2023-03-07 04:20:00 +00:00
|
|
|
hash = "sha256-qzi21vouUhvpmqxQpYoCnHJDLRU8ZgCvewxblD2BGJc=";
|
2018-12-26 19:49:24 +00:00
|
|
|
};
|
|
|
|
|
2021-09-09 04:20:00 +00:00
|
|
|
postPatch = ''
|
2021-12-25 18:58:49 +00:00
|
|
|
substituteInPlace mcfly.bash --replace '$(command which mcfly)' '${placeholder "out"}/bin/mcfly'
|
|
|
|
substituteInPlace mcfly.zsh --replace '$(command which mcfly)' '${placeholder "out"}/bin/mcfly'
|
|
|
|
substituteInPlace mcfly.fish --replace '(command which mcfly)' '${placeholder "out"}/bin/mcfly'
|
2021-09-09 04:20:00 +00:00
|
|
|
'';
|
|
|
|
|
2023-03-07 04:20:00 +00:00
|
|
|
cargoHash = "sha256-RHR+qmtnSrJOPkObRrE39EshmDVu53vEvw647ATk+os=";
|
2018-12-26 19:49:24 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/cantino/mcfly";
|
2022-12-02 09:19:50 +00:00
|
|
|
description = "An upgraded ctrl-r where history results make sense for what you're working on right now";
|
2021-08-28 00:04:20 +00:00
|
|
|
changelog = "https://github.com/cantino/mcfly/raw/v${version}/CHANGELOG.txt";
|
2018-12-26 19:49:24 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.melkor333 ];
|
|
|
|
};
|
|
|
|
}
|