cli/flake.nix
2022-02-07 22:37:03 +01:00

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}";
};
};
}