Basic Serenity Config

This commit is contained in:
2023-03-03 15:08:43 -05:00
parent 2c7147a287
commit 5bb7a558f4
4 changed files with 2202 additions and 7 deletions

View File

@@ -33,12 +33,18 @@
commonArgs = {
inherit src;
nativeBuildInputs = with pkgs; [
cmake
];
buildInputs = [
# Add additional build inputs here
] ++ lib.optionals pkgs.stdenv.isDarwin [
] ++ lib.optionals pkgs.stdenv.isDarwin ([
# Additional darwin specific inputs can be set here
pkgs.libiconv
];
] ++ (with pkgs.darwin.apple_sdk.frameworks; [
Security
]));
# Additional environment variables can be set directly
# MY_CUSTOM_VAR = "some value";
@@ -116,6 +122,7 @@
nativeBuildInputs = with pkgs; [
cargo
rustc
rust-analyzer
];
};
});