Merge pull request #311737 from luftmensch-luftmensch/fennel-ls_0.1.2

fennel-ls: 0.1.0 -> 0.1.2

authored by Aleksana and committed by GitHub aa07cf9e 14afb464

+18 -10
+18 -10
pkgs/by-name/fe/fennel-ls/package.nix
··· 1 - { lib 2 - , stdenv 3 - , fetchFromSourcehut 4 - , lua 5 - , luaPackages 6 }: 7 stdenv.mkDerivation (finalAttrs: { 8 pname = "fennel-ls"; 9 - version = "0.1.0"; 10 11 src = fetchFromSourcehut { 12 owner = "~xerool"; 13 repo = "fennel-ls"; 14 rev = finalAttrs.version; 15 - hash = "sha256-RW3WFJGwascD4YnnrAm/2LFnVigzgtfzVubLMDW9J5s="; 16 }; 17 - buildInputs = [ lua luaPackages.fennel ]; 18 makeFlags = [ "PREFIX=$(out)" ]; 19 installFlags = [ "PREFIX=$(out)" ]; 20 ··· 22 description = "A language server for intelligent editing of the Fennel Programming Language"; 23 homepage = "https://git.sr.ht/~xerool/fennel-ls/"; 24 license = licenses.mit; 25 - maintainers = with maintainers; [ yisraeldov ]; 26 - platforms = lua.meta.platforms; 27 mainProgram = "fennel-ls"; 28 }; 29 })
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromSourcehut, 5 + lua, 6 + luaPackages, 7 }: 8 stdenv.mkDerivation (finalAttrs: { 9 pname = "fennel-ls"; 10 + version = "0.1.2"; 11 12 src = fetchFromSourcehut { 13 owner = "~xerool"; 14 repo = "fennel-ls"; 15 rev = finalAttrs.version; 16 + hash = "sha256-8TDJ03x9dkfievbovzMN3JRfIKba3CfzbcRAZOuPbKs="; 17 }; 18 + buildInputs = [ 19 + lua 20 + luaPackages.fennel 21 + ]; 22 makeFlags = [ "PREFIX=$(out)" ]; 23 installFlags = [ "PREFIX=$(out)" ]; 24 ··· 26 description = "A language server for intelligent editing of the Fennel Programming Language"; 27 homepage = "https://git.sr.ht/~xerool/fennel-ls/"; 28 license = licenses.mit; 29 + changelog = "https://git.sr.ht/~xerool/fennel-ls/refs/${version}"; 30 + maintainers = with maintainers; [ 31 + luftmensch-luftmensch 32 + yisraeldov 33 + ]; 34 + inherit (lua.meta) platforms; 35 mainProgram = "fennel-ls"; 36 }; 37 })