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