diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-11 19:25:19 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-11 19:25:19 +1200 |
| commit | 673f2563e48a4e1e37af6985d4d18f56bff741ea (patch) | |
| tree | 7b3aadf32be6f18de9ddf617605352ea78486323 /nix/zsh.nix | |
| parent | 3b00ff6e47d219276459fdb66e8497b0d3cd5249 (diff) | |
| download | yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.tar.xz yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.zip | |
Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do.
Yocto time!
Diffstat (limited to 'nix/zsh.nix')
| -rw-r--r-- | nix/zsh.nix | 27 |
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 - ''; -} |
