From 35c0f1964dbaee24f885dee8530357c3e17fdc33 Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Tue, 21 Oct 2025 02:55:09 +0200 Subject: [PATCH] nix add all unix status go supported platforms --- flake.nix | 1 - nix/default.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 184ffa5..9382535 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,6 @@ stableSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" - #"x86_64-windows" FIXME: Check if it works. ]; forAllSystems = f: nixpkgs.lib.genAttrs stableSystems (system: f system); diff --git a/nix/default.nix b/nix/default.nix index c7f5d77..2e3e5ae 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -85,6 +85,6 @@ in stdenv.mkDerivation rec { description = "Nim implementation of the e2e reliability protocol"; homepage = "https://github.com/status-im/nim-sds"; license = licenses.mit; - platforms = stableSystems; + platforms = ["aarch64-linux" "x86_64-linux" "aarch64-darwin" "x86_64-darwin"]; }; }