some more updates and stuff
This commit is contained in:
parent
96c6e79780
commit
203d56e06b
17 changed files with 231 additions and 255 deletions
11
flake.nix
11
flake.nix
|
@ -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
|
||||
]));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue