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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
1.0 KiB
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 12:41:23 +01:00
pname = "mcfly";
2022-07-29 00:36:13 +01:00
version = "0.6.1";
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}";
2022-07-29 00:36:13 +01:00
sha256 = "sha256-rim2ndXjoqIn5P60D5+FFuq0CDAOf29xCJ7rfemMzVU=";
2018-12-26 19:49:24 +00:00
};
postPatch = ''
2021-12-25 18:58:49 +00:00
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'
'';
2022-07-29 00:36:13 +01:00
cargoSha256 = "sha256-W1SPunH4fgam1JDI+JnLoAKCwx1RLY2JotNSyZAQoSY=";
2018-12-26 19:49:24 +00:00
meta = with lib; {
homepage = "https://github.com/cantino/mcfly";
2020-06-28 19:52:53 +01: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 ];
};
}