i3lock-color: limit to i686 and x86-64 platforms

Compilation fails for other CPU architectures due to requiring the
SSE2 instruction set. See [1] for upstream issue.

[1]: https://github.com/chrjguill/i3lock-color/issues/44
This commit is contained in:
Robert Helgesson 2017-11-06 17:52:08 +01:00
parent 294bb6daea
commit 40b347f205
No known key found for this signature in database
GPG key ID: C3DB11069E65DC86

View file

@ -28,6 +28,9 @@ stdenv.mkDerivation rec {
homepage = https://i3wm.org/i3lock/;
maintainers = with maintainers; [ garbas malyn ];
license = licenses.bsd3;
platforms = platforms.all;
# Needs the SSE2 instruction set. See upstream issue
# https://github.com/chrjguill/i3lock-color/issues/44
platforms = platforms.i686 ++ platforms.x86_64;
};
}