mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
fennel-ls: 0.1.0 -> 0.1.2
This commit is contained in:
parent
e94e4b5396
commit
bc1ecb9ed5
@ -1,20 +1,24 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromSourcehut
|
||||
, lua
|
||||
, luaPackages
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromSourcehut,
|
||||
lua,
|
||||
luaPackages,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "fennel-ls";
|
||||
version = "0.1.0";
|
||||
version = "0.1.2";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~xerool";
|
||||
repo = "fennel-ls";
|
||||
rev = finalAttrs.version;
|
||||
hash = "sha256-RW3WFJGwascD4YnnrAm/2LFnVigzgtfzVubLMDW9J5s=";
|
||||
hash = "sha256-8TDJ03x9dkfievbovzMN3JRfIKba3CfzbcRAZOuPbKs=";
|
||||
};
|
||||
buildInputs = [ lua luaPackages.fennel ];
|
||||
buildInputs = [
|
||||
lua
|
||||
luaPackages.fennel
|
||||
];
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
@ -22,8 +26,12 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
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;
|
||||
changelog = "https://git.sr.ht/~xerool/fennel-ls/refs/${version}";
|
||||
maintainers = with maintainers; [
|
||||
luftmensch-luftmensch
|
||||
yisraeldov
|
||||
];
|
||||
inherit (lua.meta) platforms;
|
||||
mainProgram = "fennel-ls";
|
||||
};
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user