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

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

31 lines
1 KiB
Nix
Raw Normal View History

2021-01-17 05:20:00 +01:00
{ lib, rustPlatform, fetchFromGitHub }:
2018-12-26 20:49:24 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "mcfly";
version = "0.8.1";
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}";
hash = "sha256-9muBKJXsXiSxSmLRygGATEbwpiz6B8oTFQIkVMJMWAk=";
2018-12-26 20:49:24 +01:00
};
postPatch = ''
2021-12-25 19:58:49 +01: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'
'';
cargoHash = "sha256-LhIAJ3JI7cp+vzEH5vthefgExPORF6Xnjj3cQkIkhSA=";
2018-12-26 20:49:24 +01:00
meta = with lib; {
homepage = "https://github.com/cantino/mcfly";
description = "An 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";
2018-12-26 20:49:24 +01:00
license = licenses.mit;
maintainers = [ maintainers.melkor333 ];
2023-11-27 02:17:53 +01:00
mainProgram = "mcfly";
2018-12-26 20:49:24 +01:00
};
}