commit 8c535e46d5ac7566799e398c3c8442ffe27a8cdd Author: Makussu Date: Mon Dec 11 22:43:55 2023 +0100 ini diff --git a/.envrc b/.envrc new file mode 100644 index 0000000..ba6a6b5 --- /dev/null +++ b/.envrc @@ -0,0 +1,4 @@ +if ! has nix_direnv_version || ! nix_direnv_version 2.4.0; then + source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/2.4.0/direnvrc" "sha256-XQzUAvL6pysIJnRJyR7uVpmUSZfc7LSgWQwq/4mBr1U=" +fi +use flake diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..4109e35 --- /dev/null +++ b/flake.nix @@ -0,0 +1,21 @@ +{ + description = "A basic flake with a shell"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; + inputs.flake-utils.url = "github:numtide/flake-utils"; + + outputs = { self, nixpkgs, flake-utils }: + flake-utils.lib.eachDefaultSystem (system: let + pkgs = nixpkgs.legacyPackages.${system}; + buildInputs = with pkgs; [ + ]; + in { + devShells.default = pkgs.mkShell { + nativeBuildInputs = [ + ]; + inherit buildInputs; + shellHook = '' + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${pkgs.lib.makeLibraryPath buildInputs}" + ''; + }; + }); +}