aboutsummaryrefslogtreecommitdiff
path: root/nix/zsh.nix
blob: a3feb2b10a425877b887b2fb691c35fc3d81af04 (plain)
1
2
3
4
5
6
7
8
9
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
}