From 6ded8ff3ff1901c2fda1ea211e76bf6ecde48641 Mon Sep 17 00:00:00 2001 From: doprz <52579214+doprz@users.noreply.github.com> Date: Fri, 12 Dec 2025 18:21:40 -0600 Subject: [PATCH] feat(nix): add comprehensive Nix flake for linux-rust --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index d0d6588..5994a98 100644 --- a/flake.nix +++ b/flake.nix @@ -39,6 +39,7 @@ libpulseaudio alsa-lib bluez + # https://github.com/max-privatevoid/iced/blob/master/DEPENDENCIES.md expat fontconfig @@ -78,7 +79,7 @@ inherit buildInputs nativeBuildInputs src; strictDeps = true; - RUST_BACKTRACE = "1"; + # RUST_BACKTRACE = "1"; }; librepods = craneLib.buildPackage ( @@ -106,9 +107,9 @@ ); in { - # checks = { - # inherit librepods; - # }; + checks = { + inherit librepods; + }; packages.default = librepods; apps.default = { @@ -128,7 +129,6 @@ ] ++ buildInputs; - # LD_LIBRARY_PATH = builtins.foldl' (a: b: "${a}:${b}/lib") "${pkgs.vulkan-loader}/lib" buildInputs; LD_LIBRARY_PATH = lib.makeLibraryPath buildInputs; };