mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
added kgocode
This commit is contained in:
parent
e9e6d62c59
commit
bf0ed5e93a
21
pkgs/applications/misc/kgocode/default.nix
Normal file
21
pkgs/applications/misc/kgocode/default.nix
Normal file
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
@ -10296,6 +10296,10 @@ let
|
||||
|
||||
gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; };
|
||||
|
||||
kgocode = callPackage ../applications/misc/kgocode {
|
||||
inherit (pkgs.kde4) kdelibs;
|
||||
};
|
||||
|
||||
gotags = goPackages.gotags.bin // { outputs = [ "bin" ]; };
|
||||
|
||||
golint = goPackages.lint.bin // { outputs = [ "bin" ]; };
|
||||
|
Loading…
Reference in New Issue
Block a user