33 lines
1.1 KiB
Nix
Raw Permalink Normal View History

2021-01-17 04:20:00 +00:00
{ lib, rustPlatform, fetchFromGitHub }:
2018-12-26 20:49:24 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "mcfly";
2021-04-04 23:53:53 +00:00
version = "0.5.6";
2018-12-26 20:49:24 +01:00
src = fetchFromGitHub {
owner = "cantino";
repo = "mcfly";
2020-01-16 20:33:13 +01:00
rev = "v${version}";
2021-04-04 23:53:53 +00:00
sha256 = "sha256-x2cED+WEc50RB8BxiDEm/XnauT1RqqGjSIdL5MMaFBY=";
2018-12-26 20:49:24 +01:00
};
2020-08-22 04:20:00 -05:00
postInstall = ''
substituteInPlace mcfly.bash --replace '$(which mcfly)' $out/bin/mcfly
substituteInPlace mcfly.zsh --replace '$(which mcfly)' $out/bin/mcfly
substituteInPlace mcfly.fish --replace '(which mcfly)' $out/bin/mcfly
2020-01-21 23:00:00 -05:00
install -Dm644 -t $out/share/mcfly mcfly.bash
2020-06-28 13:52:53 -05:00
install -Dm644 -t $out/share/mcfly mcfly.zsh
2020-08-22 04:20:00 -05:00
install -Dm644 -t $out/share/mcfly mcfly.fish
2018-12-26 20:49:24 +01:00
'';
cargoSha256 = "sha256-7RKewz5jBS2HhHvXHBUWaQQ/wq9nryS9E+DqzBOVjPs=";
2018-12-26 20:49:24 +01:00
meta = with lib; {
homepage = "https://github.com/cantino/mcfly";
2020-06-28 13:52:53 -05:00
description = "An upgraded ctrl-r for Bash whose history results make sense for what you're working on right now";
2020-12-10 22:18:00 -05:00
changelog = "https://github.com/cantino/mcfly/blob/v${version}/CHANGELOG.txt";
2018-12-26 20:49:24 +01:00
license = licenses.mit;
maintainers = [ maintainers.melkor333 ];
};
}