nix add all unix status go supported platforms

This commit is contained in:
Ivan Folgueira Bande 2025-10-21 02:55:09 +02:00
parent 972d7862fc
commit 35c0f1964d
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7
2 changed files with 1 additions and 2 deletions

View File

@ -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);

View File

@ -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"];
};
}