summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/navi/default.nix
blob: 1e8274f8040258f5151ca3113bee2e4d401ed30f (plain)
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
31
32
33
34
35
36
37
# via https://git.ingolf-wagner.de/palo/nixos-config/src/master/pkgs/navi/default.nix

{ rustPlatform, fetchFromGitHub, stdenv, fzf, makeWrapper, openssl, pkgconfig }:

rustPlatform.buildRustPackage rec {
  pname = "navi";
  version = "2.1.1";

  src = fetchFromGitHub {
    owner = "denisidoro";
    repo = "navi";
    rev = "v${version}";
    #rev = "${version}";
    sha256 = "1195f7c3ij2mkv0k1h9fwn6jkyjb01w0p6mj2xc39w5f6i0c0hwp";
  };

  cargoSha256 = "0ks25w0dncaiw3ma05r8jrng3cczancrynnpgdksbvgz49lg3wjw";

  postInstall = ''
    mkdir -p $out/share/navi/
    mv shell $out/share/navi/

    wrapProgram "$out/bin/navi" \
      --suffix "PATH" : "${fzf}/bin"
  '';
  buildInputs = [ openssl ];
  nativeBuildInputs = [ makeWrapper pkgconfig ];

  meta = with stdenv.lib; {
    description = "An interactive cheatsheet tool for the command-line";
    homepage = "https://github.com/denisidoro/navi";
    license = licenses.asl20;
    platforms = platforms.unix;
    maintainers = with maintainers; [ mrVanDalo ];
  };
}