summary refs log tree commit diff
path: root/pkgs/tools/misc/mcfly/default.nix
blob: db697bc9d51137863aa55d9ca7270acbb816ebe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "mcfly";
  version = "v0.3.1";
  rev = version;

  src = fetchFromGitHub {
    inherit rev;
    owner = "cantino";
    repo = "mcfly";
    sha256 = "0pmyw21zns4zn7pffji4yvbj63fx3g15cx81pk4bs6lzyz5zbdc2";
  };

  preInstall = ''
    mkdir -p $out/share/mcfly
    cp mcfly.bash $out/share/mcfly/
    chmod +x $out/share/mcfly/mcfly.bash
  '';

  cargoSha256 = "1bf65kagvhsi6lg8187ihi5j45hkq9d8v6j7rzmmfhngdzvcfr69";

  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 ];
  };
}