This repository has been archived on 2022-10-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Segfautils/shell.nix
2022-07-27 13:54:02 +02:00

12 lines
217 B
Nix

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