Merge pull request #281653 from yisraeldov/fennel-ls
fennel-ls: init at 0.1.0
This commit is contained in:
@@ -20623,6 +20623,13 @@
|
|||||||
githubId = 11229748;
|
githubId = 11229748;
|
||||||
name = "Lin Yinfeng";
|
name = "Lin Yinfeng";
|
||||||
};
|
};
|
||||||
|
yisraeldov = {
|
||||||
|
email = "lebow@lebowtech.com";
|
||||||
|
name = "Yisrael Dov Lebow";
|
||||||
|
github = "yisraeldov";
|
||||||
|
githubId = 138219;
|
||||||
|
matrix = "@yisraeldov:matrix.org";
|
||||||
|
};
|
||||||
yisuidenghua = {
|
yisuidenghua = {
|
||||||
email = "bileiner@gmail.com";
|
email = "bileiner@gmail.com";
|
||||||
name = "Milena Yisui";
|
name = "Milena Yisui";
|
||||||
|
|||||||
29
pkgs/by-name/fe/fennel-ls/package.nix
Normal file
29
pkgs/by-name/fe/fennel-ls/package.nix
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromSourcehut
|
||||||
|
, lua
|
||||||
|
, luaPackages
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
pname = "fennel-ls";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
|
src = fetchFromSourcehut {
|
||||||
|
owner = "~xerool";
|
||||||
|
repo = "fennel-ls";
|
||||||
|
rev = finalAttrs.version;
|
||||||
|
hash = "sha256-RW3WFJGwascD4YnnrAm/2LFnVigzgtfzVubLMDW9J5s=";
|
||||||
|
};
|
||||||
|
buildInputs = [ lua luaPackages.fennel ];
|
||||||
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
installFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A language server for intelligent editing of the Fennel Programming Language";
|
||||||
|
homepage = "https://git.sr.ht/~xerool/fennel-ls/";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ yisraeldov ];
|
||||||
|
platforms = lua.meta.platforms;
|
||||||
|
mainProgram = "fennel-ls";
|
||||||
|
};
|
||||||
|
})
|
||||||
Reference in New Issue
Block a user