Merge pull request #6360 from nckx/add-vim-wakatime

vim-plugins: add wakatime
This commit is contained in:
Domen Kožar 2015-02-16 11:54:07 +01:00
commit 5a0208d117

View file

@ -1,7 +1,7 @@
# TODO check that no license information gets lost
{ fetchurl, bash, stdenv, python, cmake, vim, vimUtils, perl, ruby, unzip,
which, fetchgit, fetchhg, fetchzip, llvmPackages, zip, vim_configurable,
vimPlugins, xkb_switch
which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip,
vim_configurable, vimPlugins, xkb_switch
}:
let
@ -486,6 +486,27 @@ rec {
'';
};
wakatime = buildVimPlugin {
name = "wakatime-20150213";
src = fetchFromGitHub {
sha256 = "1vbka18av7wgpqhfaqql5mvcgjdmxgz3hzg55ih7r63qx0icpk19";
rev = "d639c5ea7bbd67e5a3b4974a982f6c4412f4aa3";
repo = "vim-wakatime";
owner = "wakatime";
};
meta = with stdenv.lib; {
description = "Analytics about your programming";
homepage = https://wakatime.com;
license = with licenses; bsd3;
platforms = with platforms; linux;
maintainers = with maintainers; [ nckx ];
};
buildInputs = [ python ];
};
watchdogs = buildVimPlugin {
name = "watchdogs-git-2014-10-18";
src = fetchgit {