Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d2905ff5591f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 310a1ec454b5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 31, 2019

  1. Copy the full SHA
    310a1ec View commit details
Showing with 13 additions and 1 deletion.
  1. +13 −1 pkgs/misc/vim-plugins/overrides.nix
14 changes: 13 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, fetchgit, fetchurl, fetchzip
, which, fetchFromGitHub, fetchgit, fetchurl, fetchzip
, llvmPackages, rustPlatform
, xkb-switch, fzf, skim, stylish-haskell
, python3, boost, icu, ncurses
@@ -184,6 +184,18 @@ self: super: {
dependencies = with super; [ webapi-vim ];
});

gruvbox-community = buildVimPluginFrom2Nix {
pname = "gruvbox-community";
version = "2019-05-31";
src = fetchFromGitHub {
owner = "gruvbox-community";
repo = "gruvbox";
rev = "e122091dad968a5524f3e8136615a479c7b6f247";
sha256 = "1hncjyfi1gbw62b2pngy5qxyzibrhbyzgfmm9a58sdh1272l8ls8";
};
meta.maintainers = with stdenv.lib.maintainers; [ minijackson ];
};

meson = buildVimPluginFrom2Nix {
inherit (meson) pname version src;
preInstall = "cd data/syntax-highlighting/vim";