Skip to content

Commit fcbf731

Browse files
update to 0.13.1 and remove deprecated vendorSha256 (#132)
1 parent 277b596 commit fcbf731

File tree

5 files changed

+33
-16
lines changed

5 files changed

+33
-16
lines changed

nix/default.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
with pkgs;
44
buildGoModule rec {
55
pname = "jsonnet-language-server";
6-
version = "0.13.0";
6+
version = "0.13.1";
77

88
ldflags = ''
99
-X main.version=${version}
1010
'';
1111
src = lib.cleanSource ../.;
12-
vendorSha256 = "/mfwBHaouYN8JIxPz720/7MlMVh+5EEB+ocnYe4B020=";
12+
vendorHash = "sha256-+9Eh40kkyZc9mS4m6BqK5PweFRUA0iWgsG/h2jZJr5w=";
1313

1414
meta = with lib; {
1515
description = "A Language Server Protocol server for Jsonnet";
1616
homepage = "https://github.com/grafana/jsonnet-language-server";
1717
license = licenses.agpl3;
18-
maintainers = with maintainers; [ jdbaldry ];
18+
maintainers = with maintainers; [ jdbaldry trevorwhitney ];
1919
};
2020
}

nix/flake.lock

Lines changed: 24 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/flake.nix

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
outputs = { self, nixpkgs, flake-utils }:
88
{
99
overlay =
10-
(
11-
final: prev: {
12-
jsonnet-language-server = prev.callPackage ./default.nix { pkgs = prev; };
13-
snitch = prev.callPackage ./snitch.nix { pkgs = prev; };
14-
}
15-
);
10+
final: prev: {
11+
jsonnet-language-server = prev.callPackage ./default.nix { pkgs = prev; };
12+
snitch = prev.callPackage ./snitch.nix { pkgs = prev; };
13+
};
1614
} // (
1715
flake-utils.lib.eachDefaultSystem (
1816
system:

nix/shell.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ mkShell {
77
go_1_19
88
golangci-lint
99
gopls
10+
jsonnet-language-server
1011
nix-prefetch
1112
snitch
1213
];

nix/snitch.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildGoModule rec {
1111
rev = version;
1212
sha256 = "sha256-bflHSWN/BH4TSTTP4M3DldVwkV8MUSVCO15eYJTtTi0=";
1313
};
14-
vendorSha256 = "sha256-QAbxld0UY7jO9ommX7VrPKOWEiFPmD/xw02EZL6628A=";
14+
vendorHash = "sha256-QAbxld0UY7jO9ommX7VrPKOWEiFPmD/xw02EZL6628A=";
1515

1616
meta = with lib; {
1717
description = "Language agnostic tool that collects TODOs in the source code and reports them as Issues";

0 commit comments

Comments
 (0)