nixpkgs/pkgs/tools/misc/mcfly/default.nix

30 lines
1015 B
Nix
Raw Normal View History

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";
2021-12-07 13:18:40 +00:00
version = "0.5.10";
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}";
2021-12-07 13:18:40 +00:00
sha256 = "sha256-auIerSfEKBK47mIhfmjREJohnhCmtzruobRXaoz5fqA=";
2018-12-26 19:49:24 +00:00
};
postPatch = ''
substituteInPlace mcfly.bash --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly'
substituteInPlace mcfly.zsh --replace '$(which mcfly)' '${placeholder "out"}/bin/mcfly'
substituteInPlace mcfly.fish --replace '(which mcfly)' '${placeholder "out"}/bin/mcfly'
'';
2021-12-07 13:18:40 +00:00
cargoSha256 = "sha256-f9kpD295syRCntwvyjZ9AeAUV61RMbfRRMgNxKAJL8g=";
2018-12-26 19:49:24 +00:00
meta = with lib; {
homepage = "https://github.com/cantino/mcfly";
2020-06-28 18:52:53 +00:00
description = "An upgraded ctrl-r for Bash whose history results make sense for what you're working on right now";
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 ];
};
}