summary refs log tree commit diff
path: root/pkgs/development/libraries/libxc
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski.uu@gmail.com>2018-01-26 13:40:06 -0800
committerFranz Pletz <fpletz@fnordicwalking.de>2018-01-26 23:21:29 +0000
commit5bb712d5e867e0717124e5ab80919a5062cc54ed (patch)
tree4f1cf7c25f22768f7b617f07087a9a0855a591aa /pkgs/development/libraries/libxc
parented8e98f653ba2e6230a56e7619d44bc75387a5d3 (diff)
libxc: set platform to x86_64-linux only
Diffstat (limited to 'pkgs/development/libraries/libxc')
-rw-r--r--pkgs/development/libraries/libxc/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libxc/default.nix b/pkgs/development/libraries/libxc/default.nix
index 1c4cdd81d7ce5..67ec3b57fa770 100644
--- a/pkgs/development/libraries/libxc/default.nix
+++ b/pkgs/development/libraries/libxc/default.nix
@@ -26,7 +26,7 @@ in stdenv.mkDerivation {
     description = "Library of exchange-correlation functionals for density-functional theory";
     homepage = http://octopus-code.org/wiki/Libxc;
     license = licenses.lgpl3;
-    platforms = platforms.linux;
+    platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ markuskowa ];
   };
 }