Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e8e46530c868
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 00ecee00bb2f
Choose a head ref
  • 3 commits
  • 3 files changed
  • 2 contributors

Commits on Nov 9, 2020

  1. Copy the full SHA
    3a04ea4 View commit details
  2. Copy the full SHA
    49280e8 View commit details
  3. Merge pull request #102664 from andreasfelix/andreasfelix/vala-langua…

    …ge-server
    
    vala-language-server: init at 0.48.1
    worldofpeace authored Nov 9, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    00ecee0 View commit details
Showing with 67 additions and 0 deletions.
  1. +6 −0 maintainers/maintainer-list.nix
  2. +59 −0 pkgs/development/tools/vala-language-server/default.nix
  3. +2 −0 pkgs/top-level/all-packages.nix
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
@@ -514,6 +514,12 @@
githubId = 69135;
name = "Andrea Bedini";
};
andreasfelix = {
email = "fandreas@physik.hu-berlin.de";
github = "andreasfelix";
githubId = 24651767;
name = "Felix Andreas";
};
andres = {
email = "ksnixos@andres-loeh.de";
github = "kosmikus";
59 changes: 59 additions & 0 deletions pkgs/development/tools/vala-language-server/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
{ 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 stdenv.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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -11961,6 +11961,8 @@ in

vagrant = callPackage ../development/tools/vagrant {};

vala-language-server = callPackage ../development/tools/vala-language-server {};

bashdb = callPackage ../development/tools/misc/bashdb { };

gdb = callPackage ../development/tools/misc/gdb {