summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorChristian Luetke Stetzkamp <christian@lkamp.de>2020-12-19 23:03:14 +0100
committerChristian Luetke Stetzkamp <christian@lkamp.de>2020-12-19 23:03:14 +0100
commitc8c598e20c48f214274015ce4fdf238fcc92efb8 (patch)
tree029857398a186aff0670c94e392468a2c0c86aec /pkgs/applications/window-managers
parent7d6cb4e614984285bfb0beb0acf7bdda027c329e (diff)
i3lock-color: reenable all platforms
It was restricted in 40b347f2051b158e4d077eb95eff02df8a65524f due to its need for the SSE2 instruction set. However the upstream issue is now resolved [1], so reenable support for all platforms. [1] https://github.com/chrjguill/i3lock-color/issues/44
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/i3/lock-color.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix
index a64e5ea33693..f07a1926f6e4 100644
--- a/pkgs/applications/window-managers/i3/lock-color.nix
+++ b/pkgs/applications/window-managers/i3/lock-color.nix
@@ -55,8 +55,6 @@ stdenv.mkDerivation rec {
maintainers = with maintainers; [ malyn ];
license = licenses.bsd3;
- # Needs the SSE2 instruction set. See upstream issue
- # https://github.com/chrjguill/i3lock-color/issues/44
- platforms = platforms.x86;
+ platforms = platforms.all;
};
}