summaryrefslogtreecommitdiff
path: root/nix/deployment/static.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/deployment/static.nix')
-rw-r--r--nix/deployment/static.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/nix/deployment/static.nix b/nix/deployment/static.nix
deleted file mode 100644
index dcdf0f3..0000000
--- a/nix/deployment/static.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{
- perSystem = {
- lib,
- pkgs,
- inputs',
- self',
- ...
- }: let
- targets = with pkgs.pkgsCross; {
- x86_64 = musl64.pkgsStatic;
- aarch64 = aarch64-multiplatform.pkgsStatic;
- };
-
- toolchain = let
- fenix = inputs'.fenix.packages;
- in
- with fenix;
- combine (
- [minimal.cargo minimal.rustc]
- ++ map (
- pkgs:
- fenix.targets.${pkgs.stdenv.hostPlatform.config}.latest.rust-std
- ) (lib.attrValues targets)
- );
-
- rustPlatforms =
- lib.mapAttrs (
- lib.const (pkgs:
- pkgs.makeRustPlatform (
- lib.genAttrs ["cargo" "rustc"] (lib.const toolchain)
- ))
- )
- targets;
-
- buildTeawieWith = rustPlatform:
- self'.packages.teawiebot.override {
- inherit rustPlatform;
- lto = true;
- optimizeSize = true;
- };
- in {
- packages = lib.optionalAttrs pkgs.stdenv.isLinux (
- lib.mapAttrs' (
- target: rustPlatform:
- lib.nameValuePair "teawiebot-static-${target}" (buildTeawieWith rustPlatform)
- )
- rustPlatforms
- );
- };
-}