diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-11 13:25:39 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-11 13:25:39 +1200 |
| commit | 706ecb87cc51c827e1ee1765da587f6c270d72f3 (patch) | |
| tree | 406adc5916c1c68cb0b75ced00f654802424b9a5 /nix/zsh.nix | |
| parent | 0836c4b05b02907e0d00a4f6d8f80fa157e051f4 (diff) | |
| download | yerbalinux-706ecb87cc51c827e1ee1765da587f6c270d72f3.tar.xz yerbalinux-706ecb87cc51c827e1ee1765da587f6c270d72f3.zip | |
start doing zsh
Diffstat (limited to 'nix/zsh.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 +} |
