summary refs log tree commit diff
path: root/pkgs/development/libraries/gf2x
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-03-03 00:21:47 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-03-03 00:21:47 +0200
commit1254f1a46a56aba571eaa4fe636a1593631eeb25 (patch)
treec761031ed1b100ccfb6c946030db861dbd7dd41c /pkgs/development/libraries/gf2x
parentcb13a8c5f839da09c67020b346f899d762d4c75e (diff)
downloadnixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar.gz
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar.bz2
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar.lz
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar.xz
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.tar.zst
nixpkgs-1254f1a46a56aba571eaa4fe636a1593631eeb25.zip
gf2x: Disable i686 build
http://hydra.nixos.org/build/49552136/nixlog/3/raw
Diffstat (limited to 'pkgs/development/libraries/gf2x')
-rw-r--r--pkgs/development/libraries/gf2x/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gf2x/default.nix b/pkgs/development/libraries/gf2x/default.nix
index feba97f4da4..7ab06afdad6 100644
--- a/pkgs/development/libraries/gf2x/default.nix
+++ b/pkgs/development/libraries/gf2x/default.nix
@@ -2,17 +2,17 @@
 stdenv.mkDerivation rec {
   name = "gf2x-${version}";
   version = "1.1";
+
   # or fetchFromGitHub(owner,repo,rev) or fetchgit(rev)
   src = fetchurl {
     url = "http://gforge.inria.fr/frs/download.php/file/30873/gf2x-1.1.tar.gz";
     sha256 = "17w4b39j9dvri5s278pxi8ha7mf47j87kq1lr802l4408rh02gqd";
   };
-  buildInputs = [];
+
   meta = {
-    inherit version;
     description = ''Routines for fast arithmetic in GF(2)[x]'';
     license = stdenv.lib.licenses.gpl2Plus;
     maintainers = [stdenv.lib.maintainers.raskin];
-    platforms = stdenv.lib.platforms.linux;
+    platforms = ["x86_64-linux"];
   };
 }