diff options
Diffstat (limited to 'nix')
| -rw-r--r-- | nix/zsh.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/zsh.nix b/nix/zsh.nix new file mode 100644 index 0000000..a3feb2b --- /dev/null +++ b/nix/zsh.nix @@ -0,0 +1,10 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "zsh-yerba"; + src = fetchurl { + url = "https://sourceforge.net/projects/zsh/files/zsh/5.9.1/zsh-5.9.1.tar.xz/download"; + hash = ""; + }; + # Do this later +} |
