about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2019-07-30 19:08:05 +0200
committerMichael Weiss <dev.primeos@gmail.com>2019-07-30 19:25:43 +0200
commit8760c695d4e1e98d53cdf410f0f509fa62f4fd41 (patch)
tree411a1409a3b236f273f5adbaec381e46b66665f0
parentca3f1c20d7fb0847fbcc8e9eb9c6436efbf9f62a (diff)
downloadnixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar.gz
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar.bz2
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar.lz
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar.xz
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.tar.zst
nixlib-8760c695d4e1e98d53cdf410f0f509fa62f4fd41.zip
swiften, pypy: Mark as broken
swiften is broken since 2018-10-18:
x86_64-linux:  https://hydra.nixos.org/build/97180305
aarch64-linux: https://hydra.nixos.org/build/97193043

pypy is broken since 2019-05-29:
x86_64-linux (pypy):  https://hydra.nixos.org/build/97214777
x86_64-linux (pypy3): https://hydra.nixos.org/build/97221287

The builds for swiften and reposurgeon (depends on pypy) regularly fail
during rebuilds for SCons updates (e.g. [0]).

[0]: https://github.com/NixOS/nixpkgs/pull/65392
-rw-r--r--pkgs/development/interpreters/python/pypy/default.nix1
-rw-r--r--pkgs/development/libraries/swiften/default.nix1
2 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix
index 705ddb2a6f5d..db7e51a51f32 100644
--- a/pkgs/development/interpreters/python/pypy/default.nix
+++ b/pkgs/development/interpreters/python/pypy/default.nix
@@ -151,5 +151,6 @@ in with passthru; stdenv.mkDerivation rec {
     license = licenses.mit;
     platforms = [ "i686-linux" "x86_64-linux" ];
     maintainers = with maintainers; [ andersk ];
+    broken = true; # TODO: Tests are failing!
   };
 }
diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix
index c83f5b0f5ac3..5221ef9418fd 100644
--- a/pkgs/development/libraries/swiften/default.nix
+++ b/pkgs/development/libraries/swiften/default.nix
@@ -29,5 +29,6 @@ stdenv.mkDerivation rec {
     license     = licenses.gpl2Plus;
     platforms   = platforms.linux;
     maintainers = [ maintainers.twey ];
+    broken = true; # TODO: Build is failing!
   };
 }