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

32 lines
1 KiB
Nix
Raw Normal View History

2020-06-28 20:52:53 +02:00
{ stdenv, rustPlatform, fetchFromGitHub }:
2018-12-26 20:49:24 +01:00
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "mcfly";
2020-08-22 11:20:00 +02:00
version = "0.5.0";
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}";
2020-08-22 11:20:00 +02:00
sha256 = "155x745jakfcpr6kmp24cy8xwdhv81jdfjjhd149bnw5ilg0z037";
2018-12-26 20:49:24 +01:00
};
2020-08-22 11:20:00 +02: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 05:00:00 +01:00
install -Dm644 -t $out/share/mcfly mcfly.bash
2020-06-28 20:52:53 +02:00
install -Dm644 -t $out/share/mcfly mcfly.zsh
2020-08-22 11:20:00 +02:00
install -Dm644 -t $out/share/mcfly mcfly.fish
2018-12-26 20:49:24 +01:00
'';
2020-08-22 11:20:00 +02:00
cargoSha256 = "0y6sjbzg5qqqip9sc9ajyd5ra3n2wwvarj6nhpzjhh05kqz3qja4";
2018-12-26 20:49:24 +01:00
meta = with stdenv.lib; {
homepage = "https://github.com/cantino/mcfly";
2020-06-28 20:52:53 +02:00
description = "An upgraded ctrl-r for Bash whose history results make sense for what you're working on right now";
2018-12-26 20:49:24 +01:00
license = licenses.mit;
maintainers = [ maintainers.melkor333 ];
};
}