about summary refs log tree commit diff
path: root/nixpkgs/pkgs/shells/fish/plugins/puffer.nix
blob: 0365c55e5351639250678020ee043a2e23ade664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ lib, buildFishPlugin, fetchFromGitHub }:

buildFishPlugin rec {
  pname = "puffer";
  version = "unstable-2022-10-07";

  src = fetchFromGitHub {
    owner = "nickeb96";
    repo = "puffer-fish";
    rev = "fd0a9c95da59512beffddb3df95e64221f894631";
    hash = "sha256-aij48yQHeAKCoAD43rGhqW8X/qmEGGkg8B4jSeqjVU0=";
  };

  meta = with lib; {
    description = "Text Expansions for Fish";
    homepage = "https://github.com/nickeb96/puffer-fish";
    license = licenses.mit;
    maintainers = with maintainers; [ quantenzitrone ];
  };
}