Temporarily use some packages from nixpkgs-master
This commit is contained in:
parent
36ca746b47
commit
f23200c460
5 changed files with 24 additions and 24 deletions
|
@ -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;
|
||||
|
|
|
@ -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; [];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue