mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
kgocode-kde4: drop
This commit is contained in:
parent
75a4a8dca4
commit
c70ba3d511
2 changed files with 0 additions and 28 deletions
|
@ -1,26 +0,0 @@
|
|||
{ fetchgit, stdenv, cmake, kdelibs4, automoc4 } :
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kgocode-0.0.1";
|
||||
|
||||
buildInputs = [ cmake kdelibs4 automoc4 ];
|
||||
|
||||
src = fetchgit {
|
||||
url = https://bitbucket.org/lucashnegri/kgocode.git;
|
||||
rev = "024536e4b2f371db4f51c1d80fb6b444352ff6a6";
|
||||
sha256 = "10q4nvx3wz5wl3wwpfprz26j4x59s41bpdgafbg6604im58hklal";
|
||||
};
|
||||
|
||||
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.
|
||||
'';
|
||||
homepage = https://bitbucket.org/lucashnegri/kgocode/overview;
|
||||
maintainers = with maintainers; [ qknight ];
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -13033,8 +13033,6 @@ with pkgs;
|
|||
|
||||
gocode = callPackage ../development/tools/gocode { };
|
||||
|
||||
kgocode = callPackage ../applications/misc/kgocode { };
|
||||
|
||||
gotags = callPackage ../development/tools/gotags { };
|
||||
|
||||
golint = callPackage ../development/tools/golint { };
|
||||
|
|
Loading…
Reference in a new issue