some more updates and stuff

This commit is contained in:
Mars 2025-04-21 01:42:24 -04:00
parent 96c6e79780
commit 203d56e06b
Signed by: pupbrained
GPG key ID: 874E22DF2F9DFCB5
17 changed files with 231 additions and 255 deletions

View file

@ -18,10 +18,7 @@
system: let
pkgs = import nixpkgs {inherit system;};
llvmPackages = with pkgs;
if hostPlatform.isLinux
then llvmPackages_20
else llvmPackages_19;
llvmPackages = pkgs.llvmPackages_20;
stdenv = with pkgs;
(
@ -38,18 +35,20 @@
++ (with pkgsStatic; [
curl
ftxui
libiconv
sqlitecpp
tomlplusplus
])
++ darwinPkgs
++ linuxPkgs;
darwinPkgs = nixpkgs.lib.optionals stdenv.isDarwin (with pkgs.pkgsStatic; [libiconv]);
linuxPkgs = nixpkgs.lib.optionals stdenv.isLinux (with pkgs;
[
valgrind
]
++ (with pkgsStatic; [
dbus
sqlitecpp
xorg.libX11
wayland
]));