85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
33 lines
1.1 KiB
Nix
33 lines
1.1 KiB
Nix
{ lib, rustPlatform, fetchFromGitHub }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mcfly";
|
|
version = "0.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cantino";
|
|
repo = "mcfly";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-x2cED+WEc50RB8BxiDEm/XnauT1RqqGjSIdL5MMaFBY=";
|
|
};
|
|
|
|
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
|
|
install -Dm644 -t $out/share/mcfly mcfly.bash
|
|
install -Dm644 -t $out/share/mcfly mcfly.zsh
|
|
install -Dm644 -t $out/share/mcfly mcfly.fish
|
|
'';
|
|
|
|
cargoSha256 = "sha256-7RKewz5jBS2HhHvXHBUWaQQ/wq9nryS9E+DqzBOVjPs=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/cantino/mcfly";
|
|
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/blob/v${version}/CHANGELOG.txt";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.melkor333 ];
|
|
};
|
|
}
|