Add nix shell support (#896)

* Add flakes

* version patching, better artifact name  and some comments

* try to get clangd working + some documentation

* remove useless custom scripts from the devshell and update the build readme
This commit is contained in:
cat_or_not 2026-02-18 14:00:38 -05:00 committed by GitHub
parent 593211951a
commit cf29bbc384
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 464 additions and 0 deletions

View file

@ -57,6 +57,57 @@ jobs:
clangFormatVersion: 16
style: file
nix-build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v34
with:
# We don't enable ca-derivations here
# because we have later jobs where ca-derivations is enabled.
nix_conf: ${{ env.nix_conf }}
- name: Restore and save Nix store
uses: nix-community/cache-nix-action@v6
with:
# restore and save a cache using this key
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix', '**/flake.lock') }}
# if there's no cache hit, restore a cache by this prefix
restore-prefixes-first-match: nix-${{ runner.os }}-
# collect garbage until the Nix store size (in bytes) is at most this number
# before trying to save a new cache
# 1G = 1073741824
gc-max-store-size-linux: 3G
# do purge caches
purge: true
# purge all versions of the cache
purge-prefixes: nix-${{ runner.os }}-
# created more than this number of seconds ago
purge-created: 0
# or, last accessed more than this number of seconds ago
# relative to the start of the `Post Restore and save Nix store` phase
purge-last-accessed: 0
# except any version with the key that is the same as the `primary-key`
purge-primary-key: never
- name: Build
run: nix build
- name: Extract Short Commit Hash
id: extract
shell: bash
run: echo commit=$(git rev-parse --short HEAD) >> $GITHUB_OUTPUT
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: NorthstarLauncher-NIX-${{ steps.extract.outputs.commit }}
path: |
result/
format-check-cmake-files:
runs-on: ubuntu-latest
steps:

4
.gitignore vendored
View file

@ -373,3 +373,7 @@ MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
# Nix outputs
.clangd
result

View file

@ -59,3 +59,10 @@ As such the corresponding commands are
* `podman build --rm -t northstar-build-fedora .`
* `podman run --rm -it -e CC=cl -e CXX=cl --mount type=bind,source="$(pwd)",destination=/build,z northstar-build-fedora cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_SYSTEM_NAME=Windows -G "Ninja" -B build`
* `podman run --rm -it -e CC=cl -e CXX=cl --mount type=bind,source="$(pwd)",destination=/build,z northstar-build-fedora cmake --build build/`
## NixOs/Nix
Using the nix package manager to build northstar is just as simple as `nix build github:R2Northstar/NorthstarLauncher` or `nix build` inside the repo.
A development shell exists as well : `nix develop`
1. To generate build files Run `generate-build-ns` (this is required since a custom toolchain file must be used).
2. Run `cmake --build build/` to build the project.

96
flake.lock generated Normal file
View file

@ -0,0 +1,96 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1771008912,
"narHash": "sha256-gf2AmWVTs8lEq7z/3ZAsgnZDhWIckkb+ZnAo5RzSxJg=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "a82ccc39b39b621151d6732718e3e250109076fa",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": {
"locked": {
"lastModified": 1770107345,
"narHash": "sha256-tbS0Ebx2PiA1FRW8mt8oejR0qMXmziJmPaU1d4kYY9g=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "4533d9293756b63904b7238acb84ac8fe4c8c2c4",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs",
"treefmt-nix": "treefmt-nix"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
},
"treefmt-nix": {
"inputs": {
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1770228511,
"narHash": "sha256-wQ6NJSuFqAEmIg2VMnLdCnUc0b7vslUohqqGGD+Fyxk=",
"owner": "numtide",
"repo": "treefmt-nix",
"rev": "337a4fe074be1042a35086f15481d763b8ddc0e7",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "treefmt-nix",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

301
flake.nix Normal file
View file

@ -0,0 +1,301 @@
{
description = "NorthstarLauncher - MSVC cross build";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
treefmt-nix.url = "github:numtide/treefmt-nix";
self.submodules = true; # flakes don't copy submodles by default so we need this
};
outputs =
{
self,
nixpkgs,
flake-utils,
treefmt-nix,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [ ];
config = {
allowUnsupportedSystem = true;
allowUnfree = true;
microsoftVisualStudioLicenseAccepted = true;
};
};
cross = pkgs.pkgsCross.x86_64-windows;
toolchainHelper = rec {
base = cross.windows.sdk;
arch = "x64";
MSVC_INCLUDE = "${base}/crt/include";
MSVC_LIB = "${base}/crt/lib";
WINSDK_INCLUDE = "${base}/sdk/Include";
WINSDK_LIB = "${base}/sdk/Lib";
mkArgs = args: builtins.concatStringsSep " " args;
linker = mkArgs [
"/manifest:no"
"-libpath:${MSVC_LIB}"
"-libpath:${WINSDK_LIB}/ucrt/${arch}"
"-libpath:${WINSDK_LIB}/um/${arch}"
"-libpath:${WINSDK_LIB}/${arch}"
"-libpath:${MSVC_LIB}/${arch}"
];
compiler = mkArgs [
"/vctoolsdir ${cross.windows.sdk}/crt"
"/winsdkdir ${cross.windows.sdk}/sdk"
# tbh I am not sure what is exactly needed here since I just copied a execiting toolchain file from somewhere
# if it causes problems remove it but since it doesn't cause I don't see any reason in removing this
# thougths?
"/EHs"
"-D_CRT_SECURE_NO_WARNINGS"
"--target=x86_64-windows-msvc"
"-fms-compatibility-version=19.11"
"-imsvc ${MSVC_INCLUDE}"
"-imsvc ${WINSDK_INCLUDE}/ucrt"
"-imsvc ${WINSDK_INCLUDE}/shared"
"-imsvc ${WINSDK_INCLUDE}/um"
"-imsvc ${WINSDK_INCLUDE}/winrt"
];
};
toolchainFile =
let
inherit (toolchainHelper)
linker
compiler
WINSDK_INCLUDE
WINSDK_LIB
MSVC_INCLUDE
MSVC_LIB
;
in
pkgs.writeText "WindowsToolchain.cmake" ''
set(CMAKE_SYSTEM_NAME Windows)
set(CMAKE_SYSTEM_VERSION 10.0)
set(CMAKE_SYSTEM_PROCESSOR x86_64)
set(IS_NIX_ENV 1) # for a check somewhere down the line (in one of the CMakeList.cmake)
set(CMAKE_C_COMPILER "clang-cl")
set(CMAKE_CXX_COMPILER "clang-cl")
set(CMAKE_AR "llvm-lib")
set(CMAKE_LINKER "lld-link")
set(CMAKE_RC_COMPILER "llvm-rc")
set(CMAKE_C_FLAGS "${compiler}")
set(CMAKE_CXX_FLAGS "${compiler}")
set(CMAKE_EXE_LINKER_FLAGS "${linker}")
set(CMAKE_C_STANDARD_LIBRARIES "${compiler}")
set(CMAKE_CXX_STANDARD_LIBRARIES "${compiler}")
set(CMAKE_SHARED_LINKER_FLAGS "${linker}")
set(CMAKE_MODULE_LINKER_FLAGS "${linker}")
set(CMAKE_C_COMPILER_WORKS 1)
set(CMAKE_CXX_COMPILER_WORKS 1)
message(STATUS "MSVC_LIB: ${MSVC_LIB}")
message(STATUS "WINSDK_LIB: ${WINSDK_LIB}")
include_directories(${MSVC_INCLUDE})
include_directories(${WINSDK_INCLUDE}/ucrt)
include_directories(${WINSDK_INCLUDE}/shared)
include_directories(${WINSDK_INCLUDE}/um)
include_directories(${WINSDK_INCLUDE}/winrt)
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded")
set(CMAKE_VERBOSE_MAKEFILE ON)
'';
mkBuildDir = /* bash */ "cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${toolchainFile} -DCMAKE_POLICY_VERSION_MINIMUM=3.5";
mkBuildDirShell = mkBuildDir + " -DCMAKE_EXPORT_COMPILE_COMMANDS=1";
lib = pkgs.lib;
# Eval the treefmt modules from ./treefmt.nix
treefmtEval =
pkgs:
treefmt-nix.lib.evalModule pkgs (
{ ... }:
{
# Used to find the project root
projectRootFile = "flake.nix";
# Add formaters for some other langs
# programs.clang-format.enable = true; # doesn't format correctly yet
programs.nixfmt.enable = true;
# settings
settings.formater.clang-format.args = [
"-i"
"--style=file"
"--exclude=primedev/include primedev/*.cpp primedev/*.h"
];
}
);
in
{
# for `nix fmt`
formatter = (treefmtEval pkgs).config.build.wrapper;
# for `nix flake check`
checks = {
formatting = (treefmtEval pkgs).config.build.check self;
};
packages = {
northstar = pkgs.stdenv.mkDerivation (finalAttrs: {
pname = "NorthstarLauncher";
# version should be in the format "0.0.0" or things migth break
# if it needs to change update the version coide in postPatch
version = "0.0.0"; # TODO: get a some action to update the version
src = self;
nativeBuildInputs = with pkgs; [
cross.buildPackages.cmake
cross.buildPackages.ninja
cross.buildPackages.msitools
llvmPackages.clang-unwrapped
llvmPackages.bintools-unwrapped
perl
pkg-config
git
];
buildInputs = [
# cross.zlib # TODO: need upstream fixes for this # but also northstar is vendoring zlib so let it vendor it self
cross.windows.sdk
];
dontUseCmakeConfigure = true;
phases = [
"unpackPhase"
"patchPhase"
"postPatch"
"buildPhase"
"installPhase"
];
postPatch =
let
zlib = pkgs.fetchFromGitHub {
owner = "R2Northstar";
repo = "zlib";
rev = "9f0f2d4f9f1f28be7e16d8bf3b4e9d4ada70aa9f";
hash = "sha256-PL6lH7I4qGduaVTR1pGfXUjpZp41kUERvGrqERmSoNQ=";
};
versionSeq = (lib.strings.splitString "." finalAttrs.version);
versionAt = index: builtins.elemAt versionSeq index;
versionQuadruplet = "${versionAt 0},${versionAt 1},${versionAt 2},0";
in
''
mkdir -p $TMPDIR/cloned
zlib_src=$TMPDIR/cloned/zlib
cp -r ${zlib} "$zlib_src"
chmod +rw "$zlib_src"
substituteInPlace primedev/thirdparty/minizip/CMakeLists.txt \
--replace "clone_repo(zlib https://github.com/madler/zlib)" "
set(ZLIB_SOURCE_DIR $zlib_src)
set(ZLIB_BINARY_DIR $zlib_src)
"
substituteInPlace primedev/ns_version.h \
--replace "#define NORTHSTAR_VERSION 0,0,0,1" "#define NORTHSTAR_VERSION ${versionQuadruplet}"
substituteInPlace primedev/resources.rc \
--replace "DEV" "${finalAttrs.version}"
substituteInPlace primedev/primelauncher/resources.rc \
--replace "DEV" "${finalAttrs.version}"
'';
buildPhase = ''
mkdir -p build
${mkBuildDir}
cmake --build build/
'';
installPhase = ''
mkdir -p $out
cp -r build/game/* $out
'';
meta = {
description = "Northstar launcher";
homepage = "https://northstar.tf/";
license = lib.licenses.mit;
mainProgram = "NorthstarLauncher";
platforms = [ "x86_64-linux" ];
maintainers = [ ];
};
});
default = self.packages.${system}.northstar;
};
devShells = {
no-auto-build = pkgs.mkShellNoCC {
nativeBuildInputs = with pkgs; [
cross.buildPackages.cmake
cross.buildPackages.ninja
cross.buildPackages.msitools
llvmPackages.clang-unwrapped
llvmPackages.bintools-unwrapped
perl
cross.zlib
pkg-config
# this helpful for testing the dev shell so I am not removing this yet
(pkgs.writeShellScriptBin "rebuild-ns" ''
rm -rf build/
mkdir -p build
${mkBuildDirShell}
cmake --build build/
'')
(pkgs.writeShellScriptBin "generate-build-ns" mkBuildDirShell)
];
buildInputs = [
cross.windows.sdk
];
shellHook =
let
inherit (toolchainHelper) MSVC_INCLUDE WINSDK_INCLUDE;
includes = [
"${MSVC_INCLUDE}"
"${WINSDK_INCLUDE}/ucrt"
"${WINSDK_INCLUDE}/shared"
"${WINSDK_INCLUDE}/um"
"${WINSDK_INCLUDE}/winrt"
];
in
/* bash */ ''
cp -f ${pkgs.writeText ".clangd" ''
CompileFlags:
CompilationDatabase: "cmake"
''} .clangd
export CPATH="${lib.makeLibraryPath includes}"
echo "Northstar shell init"
echo " generate-build-ns: generate build files for cmake"
'';
};
default = self.devShells.${system}.no-auto-build;
};
}
);
}

View file

@ -227,3 +227,8 @@ set_target_properties(
OUTPUT_NAME Northstar
LINK_FLAGS "/MANIFEST:NO /DEBUG"
)
# not sure why this is needed but otherwise the linker fails
if(IS_NIX_ENV)
target_link_libraries(NorthstarDLL PRIVATE -nodefaultlib:libucrt.lib msvcrt.lib)
endif()