From 8c535e46d5ac7566799e398c3c8442ffe27a8cdd Mon Sep 17 00:00:00 2001 From: Makussu Date: Mon, 11 Dec 2023 22:43:55 +0100 Subject: [PATCH] ini --- .envrc | 4 ++++ flake.nix | 21 +++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 .envrc create mode 100644 flake.nix 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}" + ''; + }; + }); +}