cortav  Artifact [0124789a13]

Artifact 0124789a1334ae8192c0a3b1514a9ec43fad62877d1623fd41610915debf9f91:


{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;
}