about summary refs log tree commit diff
path: root/pkgs/shells/fish/plugins/pisces.nix
blob: c1ed37f41227b2ffd46850cb3e55be93988c4bec (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 = "pisces";
  version = "0.7.0";

  src = fetchFromGitHub {
    owner = "laughedelic";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-Oou2IeNNAqR00ZT3bss/DbhrJjGeMsn9dBBYhgdafBw=";
  };

  meta = with lib; {
    description = "Paired symbols in the command line";
    homepage = "https://github.com/laughedelic/pisces";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ vanilla ];
  };
}