Temporarily use some packages from nixpkgs-master

This commit is contained in:
Charlotte Van Petegem 2020-02-21 14:04:02 +01:00
parent 36ca746b47
commit f23200c460
5 changed files with 24 additions and 24 deletions

View file

@ -1,9 +1,10 @@
let
pkgs = import <nixpkgs> {};
nixpkgs-master = import <nixpkgs-master> {};
baseVimConfig = import ./vim-base.nix { inherit pkgs; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
buildInputs = with nixpkgs-master; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;

View file

@ -2,12 +2,5 @@ let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = with pkgs; [
(neovim.override {
configure = {
customRC = baseVimConfig.customRC;
vam.pluginDictionaries = (baseVimConfig.vam.pluginDictionaries or []);
};
})
];
buildInputs = with pkgs; [];
}