nixpkgs/pkgs/development/tools/vala-language-server/default.nix

60 lines
993 B
Nix
Raw Normal View History

{ lib, stdenv
2020-11-09 02:44:08 +00:00
, fetchFromGitHub
, nix-update-script
, meson
, ninja
, pkg-config
, scdoc
, gnome-builder
, gnused
, glib
, libgee
, json-glib
, jsonrpc-glib
, vala
}:
stdenv.mkDerivation rec {
pname = "vala-language-server";
2021-07-04 21:34:32 +00:00
version = "0.48.3";
2020-11-09 02:44:08 +00:00
src = fetchFromGitHub {
2021-07-04 21:34:32 +00:00
owner = "Prince781";
2020-11-09 02:44:08 +00:00
repo = pname;
rev = version;
2021-07-04 21:34:32 +00:00
sha256 = "sha256-MhVwK4RtEAJcwcJe71ganCaXQHa9jzxyknzc9kJi274=";
2020-11-09 02:44:08 +00:00
};
passthru = {
updateScript = nix-update-script {
attrPath = pname;
};
};
nativeBuildInputs = [
meson
ninja
pkg-config
scdoc
# GNOME Builder Plugin
gnused
gnome-builder
];
buildInputs = [
glib
libgee
json-glib
jsonrpc-glib
vala
];
meta = with lib; {
2020-11-09 02:44:08 +00:00
description = "Code Intelligence for Vala & Genie";
2021-07-04 21:34:32 +00:00
homepage = "https://github.com/Prince781/vala-language-server";
2020-11-09 02:44:08 +00:00
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ andreasfelix ];
2020-11-09 02:44:08 +00:00
platforms = platforms.linux;
};
}