mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #31323 from rycee/i3lock-color-needs-sse2
i3lock-color: limit to i686 and x86-64 platforms
This commit is contained in:
commit
2e333a202b
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