4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
60 lines
1007 B
Nix
60 lines
1007 B
Nix
{ lib, stdenv
|
|
, 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";
|
|
version = "0.48.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "benwaffle";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "12k095052jkvbiyz8gzkj6w7r7p16d5m18fyikl48yvh5nln8fw0";
|
|
};
|
|
|
|
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; {
|
|
description = "Code Intelligence for Vala & Genie";
|
|
homepage = "https://github.com/benwaffle/vala-language-server";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = with maintainers; [ andreasfelix worldofpeace ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|