cryptomator: mark as working on intel only

During aarch64 build it fails with:

```
Failed to execute goal on project cryptomator:
Could not resolve dependencies for project org.cryptomator:cryptomator:jar:1.6.14:
The following artifacts could not be resolved:
  org.openjfx:javafx-base:jar:linux-aarch64:18.0.1,
  org.openjfx:javafx-graphics:jar:linux-aarch64:18.0.1,
  org.openjfx:javafx-controls:jar:linux-aarch64:18.0.1,
  org.openjfx:javafx-fxml:jar:linux-aarch64:18.0.1,
  org.openjfx:javafx-swing:jar:linux-aarch64:18.0.1:
Cannot access central (https://repo.maven.apache.org/maven2) in offline mode and the artifact org.openjfx:javafx-base:jar:linux-aarch64:18.0.1 has not been downloaded from it before. -> [Help 1]
```
This commit is contained in:
Stanisław Pitucha 2023-03-10 14:52:20 +11:00
parent 92a9b81a53
commit 9ebf262347

View File

@ -116,6 +116,6 @@ in stdenv.mkDerivation rec {
];
license = licenses.gpl3Plus;
maintainers = with maintainers; [ bachp ];
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
};
}