1{ lib, buildFishPlugin, fetchFromGitHub }:
2
3buildFishPlugin rec {
4 pname = "pisces";
5 version = "0.7.0";
6
7 src = fetchFromGitHub {
8 owner = "laughedelic";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-Oou2IeNNAqR00ZT3bss/DbhrJjGeMsn9dBBYhgdafBw=";
12 };
13
14 meta = with lib; {
15 description = "Paired symbols in the command line";
16 homepage = "https://github.com/laughedelic/pisces";
17 license = licenses.lgpl3;
18 maintainers = with maintainers; [ vanilla ];
19 };
20}