Initial commit

This commit is contained in:
heyarne 2022-02-07 22:22:18 +01:00
commit 0538924f3f
9 changed files with 1601 additions and 0 deletions

19
flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
description = "Frittenbude Exploration Stuff";
inputs.nixpkgs.url = github:NixOS/nixpkgs;
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
lib = pkgs.lib;
in {
devShell.${system} = pkgs.mkShell rec {
buildInputs = with pkgs; [
go
gopls
];
# LD_LIBRARY_PATH = "${lib.makeLibraryPath buildInputs}";
};
};
}