lol

fishPlugins.autopair-fish: init at 1.0.4 (#176884)

authored by

The Hedgehog and committed by
GitHub
8d76b232 a65d9a7a

+22
+20
pkgs/shells/fish/plugins/autopair-fish.nix
··· 1 + { lib, stdenv, buildFishPlugin, fetchFromGitHub }: 2 + 3 + buildFishPlugin rec { 4 + pname = "autopair.fish"; 5 + version = "1.0.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "jorgebucaran"; 9 + repo = pname; 10 + rev = version; 11 + sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU="; 12 + }; 13 + 14 + meta = with lib; { 15 + description = "Auto-complete matching pairs in the Fish command line."; 16 + homepage = "https://github.com/jorgebucaran/autopair.fish"; 17 + license = licenses.mit; 18 + maintainers = with maintainers; [ thehedgeh0g ]; 19 + }; 20 + }
+2
pkgs/shells/fish/plugins/default.nix
··· 2 2 3 3 lib.makeScope newScope (self: with self; { 4 4 5 + autopair-fish = callPackage ./autopair-fish.nix { }; 6 + 5 7 buildFishPlugin = callPackage ./build-fish-plugin.nix { }; 6 8 7 9 clownfish = callPackage ./clownfish.nix { };