Merge pull request #31323 from rycee/i3lock-color-needs-sse2

i3lock-color: limit to i686 and x86-64 platforms
This commit is contained in:
Tim Steinbach 2017-11-07 13:04:24 +00:00 committed by GitHub
commit 2e333a202b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}