This repository has been archived on 2022-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
Segfautils/shell.nix

12 lines
213 B
Nix

{ pkgs ? import <nixpkgs> {}
}:
pkgs.mkShell {
name="dev";
buildInputs = [
pkgs.go
];
shellHook = ''
export SEGFAUTILS_PORT=6893
echo "Go installed, have your fun"
'';
}