all repos — nix-packages @ 195fbbcaebbb97c3e2456d2ca9cbdb932f62157b

My personal collection of packages for nix

extract fish plugins from personal configuration

Alin
commit

195fbbcaebbb97c3e2456d2ca9cbdb932f62157b

parent

eb8fa5bb706287281ad575068f42f1f76f46dad1

1 file changed, 22 insertions(+), 0 deletions(-)

changed files
A pkgs/scoped/fishPlugins/tide.nix
@@ -0,0 +1,22 @@
+{ + lib, + tide, + fetchFromGitHub, +}: + +tide.overrideAttrs (oldAttrs: rec { + version = "7.0.12"; + + src = fetchFromGitHub { + owner = "plttn"; + repo = "tide"; + tag = "v${version}"; + hash = "sha256-VqbVrf84P59Inc+fc48evp3G62ur6yVVn2bIqI+O9FQ="; + }; + + meta = oldAttrs // { + homepage = "https://github.com/plttn/tide"; + changelog = "https://github.com/plttn/tide/blob/${src.rev}/CHANGELOG.md"; + maintainers = with lib.maintainers; [ alinnow ]; + }; +})