pac3100-exporter/default.nix
2022-08-01 11:31:30 +02:00

10 lines
143 B
Nix

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