summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@users.noreply.github.com>2016-07-08 02:34:36 +0200
committerGitHub <noreply@github.com>2016-07-08 02:34:36 +0200
commita54eb3a49acc8c24ff1f31dd74964984aebb96fc (patch)
tree340e8fb1f4c8095d6106e8b55340e27c84182da5
parent21253ac835166b6204f1b8ee7bea13d797c0ce00 (diff)
parent41a8dc7f0b5bc829b51fcb154a3750d97bdc6d87 (diff)
downloadnixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar.gz
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar.bz2
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar.lz
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar.xz
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.tar.zst
nixpkgs-a54eb3a49acc8c24ff1f31dd74964984aebb96fc.zip
Merge pull request #16791 from rasendubi/ycmd
ycmd: claim mainteinership
-rw-r--r--pkgs/development/tools/misc/ycmd/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix
index df7cc3e279a..5a56933d3ca 100644
--- a/pkgs/development/tools/misc/ycmd/default.nix
+++ b/pkgs/development/tools/misc/ycmd/default.nix
@@ -28,10 +28,11 @@ stdenv.mkDerivation rec {
     ln -s $out/lib/ycmd/ycmd/__main__.py $out/bin/ycmd
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A code-completion and comprehension server";
-    homepage = "https://github.com/Valloric/ycmd";
-    license = stdenv.lib.licenses.gpl3;
-    platforms = stdenv.lib.platforms.all;
+    homepage = https://github.com/Valloric/ycmd;
+    license = licenses.gpl3;
+    maintainers = with maintainers; [ rasendubi ];
+    platforms = platforms.all;
   };
 }