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