1
0
Fork 0

Add neuron-language-server

This commit is contained in:
Malte Brandy 2020-08-17 19:18:52 +02:00
parent 6fc738eed1
commit 373bdd0bfa
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1 @@
self: super: { neuron-language-server = self.callPackage ./package.nix { }; }

View file

@ -0,0 +1,14 @@
{ buildGoModule, fetchFromGitHub }:
buildGoModule {
pname = "neuron-language-server";
version = "0.1";
src = fetchFromGitHub {
owner = "aca";
repo = "neuron-language-server";
rev = "master";
sha256 = "02vj5szqric7zbm8fbw9ngg4dwrgi3nss6a4kv28bqjr1zm3zn4v";
};
vendorSha256 = "02dajl4l3c8522ik2hmiq8cx4kj4h2ykx8l7qsal5xznx9pqbs7i";
}