Loading pkgs/shells/fish/plugins/autopair-fish.nix 0 → 100644 +20 −0 Original line number Diff line number Diff line { lib, stdenv, buildFishPlugin, fetchFromGitHub }: buildFishPlugin rec { pname = "autopair.fish"; version = "1.0.4"; src = fetchFromGitHub { owner = "jorgebucaran"; repo = pname; rev = version; sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU="; }; meta = with lib; { description = "Auto-complete matching pairs in the Fish command line."; homepage = "https://github.com/jorgebucaran/autopair.fish"; license = licenses.mit; maintainers = with maintainers; [ thehedgeh0g ]; }; } pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,8 @@ lib.makeScope newScope (self: with self; { autopair-fish = callPackage ./autopair-fish.nix { }; buildFishPlugin = callPackage ./build-fish-plugin.nix { }; clownfish = callPackage ./clownfish.nix { }; Loading Loading
pkgs/shells/fish/plugins/autopair-fish.nix 0 → 100644 +20 −0 Original line number Diff line number Diff line { lib, stdenv, buildFishPlugin, fetchFromGitHub }: buildFishPlugin rec { pname = "autopair.fish"; version = "1.0.4"; src = fetchFromGitHub { owner = "jorgebucaran"; repo = pname; rev = version; sha256 = "sha256-s1o188TlwpUQEN3X5MxUlD/2CFCpEkWu83U9O+wg3VU="; }; meta = with lib; { description = "Auto-complete matching pairs in the Fish command line."; homepage = "https://github.com/jorgebucaran/autopair.fish"; license = licenses.mit; maintainers = with maintainers; [ thehedgeh0g ]; }; }
pkgs/shells/fish/plugins/default.nix +2 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,8 @@ lib.makeScope newScope (self: with self; { autopair-fish = callPackage ./autopair-fish.nix { }; buildFishPlugin = callPackage ./build-fish-plugin.nix { }; clownfish = callPackage ./clownfish.nix { }; Loading