mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 08:28:20 +00: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
|
@ -28,6 +28,9 @@ stdenv.mkDerivation rec {
|
||||||
homepage = https://i3wm.org/i3lock/;
|
homepage = https://i3wm.org/i3lock/;
|
||||||
maintainers = with maintainers; [ garbas malyn ];
|
maintainers = with maintainers; [ garbas malyn ];
|
||||||
license = licenses.bsd3;
|
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