2026-08-09 17:25:45 -04:00
|
|
|
{
|
|
|
|
|
description = "Northstar Nightly Builds";
|
|
|
|
|
|
|
|
|
|
inputs = {
|
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
utils.url = "github:numtide/flake-utils";
|
|
|
|
|
mods = {
|
|
|
|
|
url = "github:R2Northstar/NorthstarMods";
|
|
|
|
|
flake = false;
|
|
|
|
|
};
|
|
|
|
|
launcher = {
|
2026-08-10 03:57:06 -04:00
|
|
|
url = "git+https://github.com/R2Northstar/NorthstarLauncher.git?submodules=1&rev=e283f4e14c6fdb84821a41674310c0ea17be784f";
|
2026-08-09 17:25:45 -04:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
inputs.treefmt-nix.follows = "";
|
|
|
|
|
};
|
|
|
|
|
discordrpc = {
|
|
|
|
|
url = "github:R2Northstar/NorthstarDiscordRPC";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
plugins = {
|
|
|
|
|
url = "github:R2Northstar/NorthstarPlugins";
|
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
outputs =
|
|
|
|
|
{
|
|
|
|
|
self,
|
|
|
|
|
nixpkgs,
|
|
|
|
|
utils,
|
|
|
|
|
mods,
|
|
|
|
|
launcher,
|
|
|
|
|
discordrpc,
|
|
|
|
|
plugins,
|
|
|
|
|
}:
|
|
|
|
|
utils.lib.eachDefaultSystem (
|
|
|
|
|
system:
|
|
|
|
|
let
|
|
|
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
|
|
|
in
|
|
|
|
|
{
|
|
|
|
|
formatter = pkgs.nixfmt-tree;
|
|
|
|
|
|
|
|
|
|
packages = {
|
|
|
|
|
default = self.packages.${system}.northstar;
|
|
|
|
|
}
|
|
|
|
|
// import ./pkgs {
|
|
|
|
|
inherit
|
|
|
|
|
self
|
|
|
|
|
pkgs
|
|
|
|
|
mods
|
|
|
|
|
launcher
|
|
|
|
|
discordrpc
|
|
|
|
|
plugins
|
|
|
|
|
system
|
|
|
|
|
;
|
|
|
|
|
version = self.version;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
pkgs.act
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
// {
|
2026-08-10 03:57:06 -04:00
|
|
|
version = "1.31.13";
|
2026-08-09 17:25:45 -04:00
|
|
|
};
|
|
|
|
|
}
|