pac3100-exporter/default.nix

10 lines
143 B
Nix
Raw Normal View History

2022-08-01 11:30:50 +02:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
BuildInputs = [
gcc
];
nativeBuildInputs = [
go_1_18
];
}