aboutsummaryrefslogtreecommitdiff
path: root/overlays
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2021-04-11 14:11:54 +0530
committerAkshay Nair <phenax5@gmail.com>2021-04-11 14:11:54 +0530
commitc170e9f364cb057583e8c50f7a4b5a20c1ec0156 (patch)
tree638c39664a4499e0fa3c251721998965fcfc34cc /overlays
parent11a7511e208dae9ad1519cc1dfe65dcff015ee7b (diff)
downloadnixos-config-c170e9f364cb057583e8c50f7a4b5a20c1ec0156.tar.gz
nixos-config-c170e9f364cb057583e8c50f7a4b5a20c1ec0156.zip
Adds nix config changes
Diffstat (limited to 'overlays')
-rw-r--r--overlays/neovim.nix32
1 files changed, 18 insertions, 14 deletions
diff --git a/overlays/neovim.nix b/overlays/neovim.nix
index ee584fb..f10bad9 100644
--- a/overlays/neovim.nix
+++ b/overlays/neovim.nix
@@ -1,17 +1,21 @@
self: super: {
- tree-sitter-updated = super.tree-sitter.overrideAttrs (oldAttrs: {
- postInstall = ''PREFIX=$out make install'';
- });
- neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (oldAttrs: rec {
- name = "neovim-nightly";
- version = "0.5-nightly";
- src = self.fetchFromGitHub {
- owner = "neovim";
- repo = "neovim";
- rev = "nightly";
- sha256 = "05659gqaczsschrhbr9q1xbq6bgqai97jpkb2axp3rb2hxv30d1c";
- };
+ tree-sitter-updated = super.tree-sitter.overrideAttrs (
+ oldAttrs: {
+ postInstall = ''PREFIX=$out make install'';
+ }
+ );
+ neovim-unwrapped = super.neovim-unwrapped.overrideAttrs (
+ oldAttrs: rec {
+ name = "neovim-nightly";
+ version = "0.5-nightly";
+ src = self.fetchFromGitHub {
+ owner = "neovim";
+ repo = "neovim";
+ rev = "nightly";
+ sha256 = "1h1idmlyvydkihfr2n1bsp8c2w9jnlgvm7jqc0gmr4cvwaflcydf";
+ };
- nativeBuildInputs = with self.pkgs; [ unzip cmake pkgconfig gettext tree-sitter-updated ];
- });
+ nativeBuildInputs = with self.pkgs; [ unzip cmake pkgconfig gettext tree-sitter-updated ];
+ }
+ );
}