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

24 lines
713 B
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";
version = "0.5.9";
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}";
sha256 = "0i3qjgq1b8h3bzc7rxa60kq1yc2im9m6dgzrvial086a1zk8s81r";
2018-12-26 19:49:24 +00:00
};
cargoSha256 = "084v4fsdi25ahz068ssq29z7d5d3k3jh3s8b07irwybdsy18c629";
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 ];
};
}