tomato/flake.nix

152 lines
5.2 KiB
Nix
Raw Normal View History

{
description = "tomato flake";
# bc flakes and git submodules dont really like each other, you need to
# append '.?submodules=1' to the nix commands.
inputs = {
2024-06-12 16:40:07 +02:00
nixpkgs.url = "github:NixOS/nixpkgs/release-24.05";
flake-utils.url = "github:numtide/flake-utils";
nlohmann-json = {
url = "github:nlohmann/json/v3.11.3"; # TODO: read version from file
flake = false;
};
2024-04-15 18:12:17 +02:00
sdl3 = {
2024-06-10 18:25:29 +02:00
url = "github:libsdl-org/SDL/657c0135b1ff1685afa1bad63b0417d92f4bcb46"; # keep in sync this cmake
2024-04-15 18:12:17 +02:00
flake = false;
};
2024-04-15 15:43:45 +02:00
sdl3_image = {
2024-06-09 09:11:39 +02:00
url = "github:libsdl-org/SDL_image/8eff782fa33d795c9ea1ac42dbe7e17cc9874c78";
2024-04-15 15:43:45 +02:00
flake = false;
};
};
2024-04-15 15:43:45 +02:00
outputs = { self, nixpkgs, flake-utils, nlohmann-json, sdl3, sdl3_image }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
stdenv = (pkgs.stdenvAdapters.keepDebugInfo pkgs.stdenv);
2024-06-09 09:11:39 +02:00
#stdenv = (pkgs.stdenvAdapters.withCFlags [ "-march=x86-64-v3" ] (pkgs.stdenvAdapters.keepDebugInfo pkgs.stdenv));
in {
#packages.default = pkgs.stdenv.mkDerivation {
packages.default = stdenv.mkDerivation {
pname = "tomato";
version = "0.0.0";
src = ./.;
submodules = 1; # does nothing
nativeBuildInputs = with pkgs; [
cmake
ninja
pkg-config
patchelf
];
# for some reason, buildInputs performs some magic an converts them to build dependencies, not runtime dependencies
# also, non static dependencies (?? how to ensure ??)
dlopenBuildInputs = with pkgs; [
2023-09-29 18:15:18 +02:00
dbus
xorg.libX11
xorg.libXext
xorg.xorgproto
2023-09-29 18:15:18 +02:00
libxkbcommon
xorg.libICE
xorg.libXi
xorg.libXScrnSaver
xorg.libXcursor
xorg.libXinerama
xorg.libXrandr
xorg.libXxf86vm
2023-09-29 18:15:18 +02:00
libGL
2023-09-29 18:15:18 +02:00
pipewire
2024-04-15 15:43:45 +02:00
# sdl3_image:
libpng
libjpeg
libjxl
2024-04-16 10:30:13 +02:00
libavif
2024-04-15 15:43:45 +02:00
#libwebp # still using our own loader
];
buildInputs = with pkgs; [
#(libsodium.override { stdenv = pkgs.pkgsStatic.stdenv; })
#pkgsStatic.libsodium
libsodium
2024-07-16 10:37:19 +02:00
libopus
libvpx
] ++ self.packages.${system}.default.dlopenBuildInputs;
2024-01-14 21:48:41 +01:00
cmakeFlags = [
2024-03-16 16:43:45 +01:00
"-DTOMATO_ASAN=OFF"
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
2024-07-16 09:59:22 +02:00
#"-DCMAKE_BUILD_TYPE=Debug"
#"-DCMAKE_C_FLAGS:STRING=-Og"
#"-DCMAKE_CXX_FLAGS:STRING=-Og"
2024-02-17 22:52:55 +01:00
"-DFETCHCONTENT_SOURCE_DIR_JSON=${nlohmann-json}" # we care about the version
# TODO: use package instead
"-DFETCHCONTENT_SOURCE_DIR_ZSTD=${pkgs.zstd.src}" # we dont care about the version (we use 1.4.x features)
"-DFETCHCONTENT_SOURCE_DIR_LIBWEBP=${pkgs.libwebp.src}"
2024-04-15 18:12:17 +02:00
"-DFETCHCONTENT_SOURCE_DIR_SDL3=${sdl3}"
2024-04-15 15:43:45 +02:00
"-DFETCHCONTENT_SOURCE_DIR_SDL3_IMAGE=${sdl3_image}"
2024-04-16 10:34:47 +02:00
"-DSDL3IMAGE_JXL=ON"
2024-01-14 21:48:41 +01:00
];
# TODO: replace with install command
installPhase = ''
mkdir -p $out/bin
mv bin/tomato $out/bin
'';
dontStrip = true; # does nothing
2024-01-14 21:48:41 +01:00
# copied from nixpkgs's SDL2 default.nix
# SDL is weird in that instead of just dynamically linking with
# libraries when you `--enable-*` (or when `configure` finds) them
# it `dlopen`s them at runtime. In principle, this means it can
# ignore any missing optional dependencies like alsa, pulseaudio,
# some x11 libs, wayland, etc if they are missing on the system
# and/or work with wide array of versions of said libraries. In
# nixpkgs, however, we don't need any of that. Moreover, since we
# don't have a global ld-cache we have to stuff all the propagated
# libraries into rpath by hand or else some applications that use
# SDL API that requires said libraries will fail to start.
#
# You can grep SDL sources with `grep -rE 'SDL_(NAME|.*_SYM)'` to
# list the symbols used in this way.
# TODO: only patch if building FOR nix (like not for when static building)
postFixup =
let
#rpath = lib.makeLibraryPath (dlopenPropagatedBuildInputs ++ dlopenBuildInputs);
rpath = nixpkgs.lib.makeLibraryPath (self.packages.${system}.default.dlopenBuildInputs);
in
nixpkgs.lib.optionalString (pkgs.stdenv.hostPlatform.extensions.sharedLibrary == ".so") ''
patchelf --set-rpath "$(patchelf --print-rpath $out/bin/tomato):${rpath}" "$out/bin/tomato"
'';
};
#packages.debug = pkgs.enableDebugging self.packages.${system}.default;
devShells.${system}.default = pkgs.mkShell {
#inputsFrom = with pkgs; [ SDL2 ];
buildInputs = [ self.packages.${system}.default ]; # this makes a prebuild tomato available in the shell, do we want this?
packages = with pkgs; [
cmake
pkg-config
];
shellHook = "echo hello to tomato dev shell!";
};
apps.default = {
type = "app";
program = "${self.packages.${system}.default}/bin/tomato";
};
}
);
}