Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
497 B
Nix
20 lines
497 B
Nix
{ 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 ];
|
|
};
|
|
}
|