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

30 lines
805 B
Nix
Raw Normal View History

2018-12-26 11:49:24 -08:00
{ stdenv, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
2019-08-31 04:41:23 -07:00
pname = "mcfly";
2020-01-16 11:33:13 -08:00
version = "0.3.1";
2018-12-26 11:49:24 -08:00
src = fetchFromGitHub {
owner = "cantino";
repo = "mcfly";
2020-01-16 11:33:13 -08:00
rev = "v${version}";
2018-12-26 11:49:24 -08:00
sha256 = "0pmyw21zns4zn7pffji4yvbj63fx3g15cx81pk4bs6lzyz5zbdc2";
};
preInstall = ''
mkdir -p $out/share/mcfly
cp mcfly.bash $out/share/mcfly/
chmod +x $out/share/mcfly/mcfly.bash
'';
cargoSha256 = "1bf65kagvhsi6lg8187ihi5j45hkq9d8v6j7rzmmfhngdzvcfr69";
2018-12-26 11:49:24 -08:00
meta = with stdenv.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.";
license = licenses.mit;
platforms = platforms.linux;
maintainers = [ maintainers.melkor333 ];
};
}