Skip to content

Commit

Permalink
fix: update nix package (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorwhitney authored Jul 7, 2024
1 parent b52b7e3 commit f055ead
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.direnv/
/flake-profile*
jsonnet-language-server
jsonnet-language-server
result
8 changes: 4 additions & 4 deletions nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ buildGoModule rec {
pname = "jsonnet-language-server";
version = "0.13.1";

ldflags = ''
-X main.version=${version}
'';
ldflags = [
"-X main.version=${version}"
];
src = lib.cleanSource ../.;
vendorHash = "sha256-+9Eh40kkyZc9mS4m6BqK5PweFRUA0iWgsG/h2jZJr5w=";

meta = with lib; {
description = "A Language Server Protocol server for Jsonnet";
homepage = "https://github.com/grafana/jsonnet-language-server";
license = licenses.agpl3;
license = licenses.agpl3Only;
maintainers = with maintainers; [ jdbaldry trevorwhitney ];
};
}
12 changes: 6 additions & 6 deletions nix/flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f055ead

Please sign in to comment.