pac3100-exporter/default.nix

10 lines
143 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
BuildInputs = [
gcc
];
nativeBuildInputs = [
go_1_18
];
}