19 lines
424 B
Nix
19 lines
424 B
Nix
{
|
|
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}";
|
|
};
|
|
};
|
|
}
|