summary refs log tree commit diff
path: root/pkgs/applications/misc/kgocode/default.nix
blob: 5e72b02045c7ef4f0216f98023a5d6741e6e480a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ fetchgit, stdenv, cmake, kdelibs } :

stdenv.mkDerivation rec {
  name = "kgocode-0.0.1";

  buildInputs = [ cmake kdelibs ];

  src = fetchgit {
    url = https://bitbucket.org/lucashnegri/kgocode.git;
    rev = "024536e4b2f371db4f51c1d80fb6b444352ff6a6";
    sha256 = "1cjxcy4w46rbx90jrikklh9vw7nz641gq7xlvrq3pjsszxn537gq";
  };

  meta = with stdenv.lib; {
    description = "a plugin for KTextEditor (Kate, KDevelop, among others) that provides basic code completion for the Go programming language. Uses gocode as completion provider";
    homepage    = https://bitbucket.org/lucashnegri/kgocode/overview;
    maintainers = with maintainers; [ qknight ];
    license = licenses.gpl3Plus;
    platforms   = platforms.linux;
  };
}