Skip to content

Instantly share code, notes, and snippets.

@not-fl3
Created March 19, 2018 17:13
Show Gist options
  • Save not-fl3/137ac05c6ee6e1e34fc7b4e538356ca0 to your computer and use it in GitHub Desktop.
Save not-fl3/137ac05c6ee6e1e34fc7b4e538356ca0 to your computer and use it in GitHub Desktop.
nixpkgs.config.packageOverrides = superP: {
pythonPackages = superP.pythonPackages.override {
overrides = self: super: {
neovim = super.neovim.overrideAttrs ( oldAttrs: {
src = pkgs.fetcUrl {
url = "https://github.com/neovim/python-client/archive/0.2.4.tar.gz";
md5 = "2201270c2f63bc23456c2e10ec8d9aff";
};
});
};
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment