aboutsummaryrefslogtreecommitdiff
path: root/nix/zsh.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/zsh.nix')
-rw-r--r--nix/zsh.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/nix/zsh.nix b/nix/zsh.nix
deleted file mode 100644
index b9afca5..0000000
--- a/nix/zsh.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, fetchurl, ncurses }:
-
-stdenv.mkDerivation {
- name = "zsh-yerba";
- src = fetchurl {
- url = "https://www.zsh.org/pub/zsh-5.9.1.tar.xz";
- hash = "sha256-XSC+wD+YHcTpoJ7CRedBU4j/ZB95xcXEFrUELljYKA0=
-";
- };
- CFLAGS = "-O0";
- buildInputs = [ ncurses ];
- nativeBuildInputs = [ ncurses ];
- configureFlags = [
- "--prefix=/usr"
- "--disable-rpath"
- ];
- configurePhase = ''
- ./configure --prefix=/usr --disable-rpath
- '';
- buildPhase = ''
- make -j$NIX_BUILD_CORES
- '';
- installPhase = ''
- mkdir -p $out
- make install DESTDIR=$out/_install
- '';
-}