nixpkgs/pkgs/applications/misc/kgocode/default.nix

27 lines
857 B
Nix
Raw Normal View History

2016-01-29 17:33:01 +00:00
{ fetchgit, stdenv, cmake, kdelibs, automoc4 } :
2015-12-06 18:43:25 +00:00
stdenv.mkDerivation rec {
name = "kgocode-0.0.1";
2016-01-29 17:33:01 +00:00
buildInputs = [ cmake kdelibs automoc4 ];
2015-12-06 18:43:25 +00:00
src = fetchgit {
url = https://bitbucket.org/lucashnegri/kgocode.git;
rev = "024536e4b2f371db4f51c1d80fb6b444352ff6a6";
sha256 = "1cjxcy4w46rbx90jrikklh9vw7nz641gq7xlvrq3pjsszxn537gq";
};
meta = with stdenv.lib; {
description = "Go code completion for Kate, KDevelop and others";
longDescription = ''
A plugin for KTextEditor (Kate, KDevelop, among others) that provides
basic code completion for the Go programming language.
Uses gocode as completion provider.
'';
2015-12-06 18:43:25 +00:00
homepage = https://bitbucket.org/lucashnegri/kgocode/overview;
maintainers = with maintainers; [ qknight ];
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}