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:
parent
294bb6daea
commit
40b347f205
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue