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

33 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, rustPlatform, fetchFromGitHub }:
2018-12-26 19:49:24 +00:00
rustPlatform.buildRustPackage rec {
2019-08-31 11:41:23 +00:00
pname = "mcfly";
2020-12-11 03:18:00 +00:00
version = "0.5.2";
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}";
2020-12-11 03:18:00 +00:00
sha256 = "0a2jff72l5my00pg9lhjdmnwkqfv4hmnl0a9cfbnzsqh39lbklqy";
2018-12-26 19:49:24 +00:00
};
2020-08-22 09:20:00 +00: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-22 04:00:00 +00:00
install -Dm644 -t $out/share/mcfly mcfly.bash
2020-06-28 18:52:53 +00:00
install -Dm644 -t $out/share/mcfly mcfly.zsh
2020-08-22 09:20:00 +00:00
install -Dm644 -t $out/share/mcfly mcfly.fish
2018-12-26 19:49:24 +00:00
'';
2020-12-11 03:18:00 +00:00
cargoSha256 = "1c8qjkpc8wi095zzmgd05721kdf1knh9la91l081mvwa3inwk6ax";
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";
2020-12-11 03:18:00 +00:00
changelog = "https://github.com/cantino/mcfly/blob/v${version}/CHANGELOG.txt";
2018-12-26 19:49:24 +00:00
license = licenses.mit;
maintainers = [ maintainers.melkor333 ];
};
}