f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mcfly";
|
|
version = "0.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cantino";
|
|
repo = "mcfly";
|
|
rev = "v${version}";
|
|
hash = "sha256-XlAzQNZ4XREp+mmvASGWUnoX2na//lQCgve7OtNcHeE=";
|
|
};
|
|
|
|
postPatch = ''
|
|
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'
|
|
'';
|
|
|
|
cargoHash = "sha256-k+CNsDz3qbCFD0jiiB++1uZJlSfThuCiQkaD6QYyfsY=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cantino/mcfly";
|
|
description = "Upgraded ctrl-r where history results make sense for what you're working on right now";
|
|
changelog = "https://github.com/cantino/mcfly/raw/v${version}/CHANGELOG.txt";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.melkor333 ];
|
|
mainProgram = "mcfly";
|
|
};
|
|
}
|