Skip to content

Commit

Permalink
vim-easytags: Fix to work with universal-ctags (which is in nixpkgs)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kovacsics Robert authored and jonringer committed Mar 2, 2020
1 parent 7325ffe commit 2e6b7b0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/misc/vim-plugins/overrides.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ lib, stdenv
, python, cmake, meson, vim, ruby
, which, fetchFromGitHub, fetchgit, fetchurl, fetchzip
, which, fetchFromGitHub, fetchgit, fetchurl, fetchzip, fetchpatch
, llvmPackages, rustPlatform
, xkb-switch, fzf, skim, stylish-haskell
, python3, boost, icu, ncurses
Expand Down Expand Up @@ -365,6 +365,12 @@ self: super: {

vim-easytags = super.vim-easytags.overrideAttrs(old: {
dependencies = with super; [ vim-misc ];
patches = [
(fetchpatch { # https://github.com/xolox/vim-easytags/pull/170 fix version detection for universal-ctags
url = https://github.com/xolox/vim-easytags/commit/46e4709500ba3b8e6cf3e90aeb95736b19e49be9.patch;
sha256 = "0x0xabb56xkgdqrg1mpvhbi3yw4d829n73lsnnyj5yrxjffy4ax4";
})
];
});

# change the go_bin_path to point to a path in the nix store. See the code in
Expand Down

0 comments on commit 2e6b7b0

Please sign in to comment.