nix-zsh-completions: enable nix-command support

This commit is contained in:
Timothy DeHerrera 2020-08-02 22:54:52 -06:00
parent 219975f9cc
commit 1cec067385
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -0,0 +1,10 @@
final: prev: {
nix-zsh-completions = prev.nix-zsh-completions.overrideAttrs (o: {
src = prev.fetchFromGitHub {
owner = "Ma27";
repo = "nix-zsh-completions";
hash = "sha256-Iz04FVW7UJ2SOs3XlSF1g9HhMOvsjFbYh5baHBeCtZM=";
rev = "5a0f218ea4a452d63f90efe71e0c6ba722ec7311";
};
});
}