about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/crumbs/default.nix
blob: 5bb4220581687b322168782289855505e9683929 (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
31
32
33
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "crumbs";
  version = "0.0.3";

  src = fetchFromGitHub
    { owner = "fasseg";
      repo = "crumbs";
      rev = version;
      sha256 = "0jjvydn4i4n9xv8vsal2jxpa95mk2lw6myv0gx9wih242k9vy0l7";
    };

  prePatch = ''
    sed -i 's|gfind|find|' crumbs-completion.fish
  '';

  postInstall = ''
    mkdir -p $out/share/bash-completion/completions
    mkdir -p $out/share/fish/vendor_completions.d

    cp crumbs-completion.bash $out/share/bash-completion/completions/crumbs
    cp crumbs-completion.fish $out/share/fish/vendor_completions.d/crumbs.fish
  '';

  meta = with lib;
    { description = "Bookmarks for the command line";
      homepage    = "https://github.com/fasseg/crumbs";
      license     = licenses.wtfpl;
      platforms   = platforms.all;
      maintainers = with maintainers; [ thesola10 ];
    };
}