summary refs log tree commit diff
path: root/pkgs/applications/science/math/gmsh/default.nix
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@fysik.su.se>2018-11-14 12:33:37 +0100
committerMarkus Kowalewski <markus.kowalewski@fysik.su.se>2018-11-14 12:33:37 +0100
commit644ab709e70fe7631a8c2c77380fce9bcf562842 (patch)
treecae7e0a3f5439ee596f55a5d8f8dac51adf6c0f1 /pkgs/applications/science/math/gmsh/default.nix
parentced40eabfdb14b21a14e36ce1874b3090794fb3d (diff)
downloadnixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar.gz
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar.bz2
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar.lz
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar.xz
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.tar.zst
nixpkgs-644ab709e70fe7631a8c2c77380fce9bcf562842.zip
gmsh: restrict platform to x86_64-linux
Diffstat (limited to 'pkgs/applications/science/math/gmsh/default.nix')
-rw-r--r--pkgs/applications/science/math/gmsh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix
index de4bd270d68..7c8e62cc97c 100644
--- a/pkgs/applications/science/math/gmsh/default.nix
+++ b/pkgs/applications/science/math/gmsh/default.nix
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
   meta = {
     description = "A three-dimensional finite element mesh generator";
     homepage = http://gmsh.info/;
-    platforms = stdenv.lib.platforms.all;
+    platforms = [ "x86_64-linux" ];
     license = stdenv.lib.licenses.gpl2Plus;
   };
 }