about summary refs log tree commit diff
path: root/ModerationClient/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'ModerationClient/flake.nix')
-rw-r--r--ModerationClient/flake.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/ModerationClient/flake.nix b/ModerationClient/flake.nix

index 6c55fde..64476d1 100644 --- a/ModerationClient/flake.nix +++ b/ModerationClient/flake.nix
@@ -16,12 +16,13 @@ libX11 libX11.dev ]; + dotnetSdk = pkgs.dotnetCorePackages.dotnet_9.sdk; in rec { # `nix develop` devShells.default = with pkgs; mkShell { buildInputs = [ - dotnetCorePackages.dotnet_9.sdk + dotnetSdk fontconfig gnumake icu @@ -29,9 +30,9 @@ ] ++ xorgLibs; shellHook = '' - export DOTNET_ROOT=${dotnet-sdk} + export DOTNET_ROOT=${dotnetSdk} export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${lib.makeLibraryPath ([ fontconfig icu openssl ] ++ xorgLibs) } ''; }; }); -} \ No newline at end of file +}