all repos — nix-packages @ 56c4129da3f7e6956af4e1d3a7c0fe69568c3a3a

My personal collection of packages for nix

pkgs/scoped/fishPlugins/tide.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  lib,
  tide,
  fetchFromGitHub,
}:

tide.overrideAttrs (oldAttrs: rec {
  version = "7.0.15";

  src = fetchFromGitHub {
    owner = "plttn";
    repo = "tide";
    tag = "v${version}";
    hash = "sha256-m0hJUCwUze1skhwKWCHDLfXL+ZPucSDaSr0z59rKjpk=";
  };

  meta = oldAttrs // {
    homepage = "https://github.com/plttn/tide";
    changelog = "https://github.com/plttn/tide/blob/${src.rev}/CHANGELOG.md";
    maintainers = with lib.maintainers; [ alinnow ];
  };
})