picture-frame/shell.nix

13 lines
205 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
go
];
# Disabling hardening is required for go debugger to work. Not needed for packaging.
NIX_HARDENING_ENABLE = "";
}