From 673f2563e48a4e1e37af6985d4d18f56bff741ea Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Thu, 11 Jun 2026 19:25:19 +1200 Subject: Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do. Yocto time! --- nix/zsh.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 nix/zsh.nix (limited to 'nix/zsh.nix') 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 - ''; -} -- cgit v1.2.3