Files
wehub-resource-sync d68f003000
CI / Change detection (push) Has been cancelled
CI / Version drift (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Workflow RLM cache (push) Has been cancelled
CI / Test (macos-latest) (push) Has been cancelled
CI / Test (ubuntu-latest) (push) Has been cancelled
CI / Test (windows-latest) (push) Has been cancelled
CI / npm wrapper smoke (push) Has been cancelled
CI / Mobile runtime smoke (push) Has been cancelled
CI / Workflow lint (push) Has been cancelled
CI / Documentation (push) Has been cancelled
Web Frontend / Lint & Type Check (push) Failing after 1s
Auto-close harvested PRs / close (push) Failing after 1s
cargo-deny / cargo-deny (bans licenses sources) (push) Failing after 1s
Security audit / cargo-audit (push) Failing after 1s
Sync to CNB / sync (push) Failing after 1s
cargo-deny / cargo-deny (advisories) (push) Failing after 3s
Web Frontend / Deploy to Cloudflare (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:08:23 +08:00

109 lines
2.6 KiB
Nix

{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
fenix,
...
}@inputs:
let
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
forEachSystem =
f:
inputs.nixpkgs.lib.genAttrs systems (
system:
f {
inherit system;
pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.self.overlays.default
];
};
}
);
rev = self.shortRev or self.dirtyShortRev or "dirty";
in
{
packages = forEachSystem (
{ pkgs, system }:
let
codewhale = pkgs.callPackage ./nix/package.nix {
inherit rev;
rustPlatform = pkgs.makeRustPlatform {
cargo = pkgs.rustToolchain;
rustc = pkgs.rustToolchain;
};
};
in
{
default = codewhale;
codewhale = codewhale;
# Compatibility alias for existing Nix users during the rename.
deepseek-tui = codewhale;
}
);
overlays.default = final: prev: {
rustToolchain =
with fenix.packages.${prev.stdenv.hostPlatform.system};
combine (
with stable;
[
rustc
cargo
clippy
rustfmt
rust-src
]
);
};
devShells = forEachSystem (
{ pkgs, system }:
{
default = pkgs.mkShell {
packages = [
pkgs.rustToolchain
pkgs.rust-analyzer
pkgs.lldb
pkgs.pkg-config
pkgs.openssl
pkgs.python3
self.formatter.${system}
] ++ pkgs.lib.optionals pkgs.stdenv.isLinux [
pkgs.dbus
];
env = {
# Required by rust-analyzer
RUST_SRC_PATH = "${pkgs.rustToolchain}/lib/rustlib/src/rust/library";
} // pkgs.lib.optionalAttrs pkgs.stdenv.isLinux {
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (
with pkgs;
[
openssl
dbus
]
);
};
};
}
);
formatter = forEachSystem ({ pkgs, ... }: pkgs.nixfmt);
};
}