Artifact 0124789a1334ae8192c0a3b1514a9ec43fad62877d1623fd41610915debf9f91:
- File shell.nix — part of check-in [b4009ca1bd] at 2024-05-07 19:25:37 on branch trunk — unbreak build (oops sorry about that) (user: lexi, size: 235) [annotate] [blame] [check-ins using]
{pkgs ? import <nixpkgs> {}, ...}: let debuggable = d: d.overrideAttrs(o: rec { dontStrip = true; }); in pkgs.mkShell { buildInputs = with pkgs; [ lua5_4 curl ]; shellHook = '' exec fish ''; NIX_ENFORCE_PURITY = false; }