From a68ae2c2056b1fe286e0d07c0c9ded1ca6e4e994 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 5 Jan 2019 22:51:21 +0100 Subject: [PATCH] obs-studio: restrict meta.platforms Hydra has been trying to build it on aarch64-linux, but never succeeded: https://hydra.nixos.org/job/nixpkgs/trunk/obs-studio.aarch64-linux/all (It tries to feed compiler x86-specific options.) I didn't test i686-linux, due to a transitive dependency not building (libupnp), but there it might likely work. --- pkgs/applications/video/obs-studio/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index 9fc9c587108..c98acda9eea 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -91,6 +91,6 @@ in stdenv.mkDerivation rec { homepage = https://obsproject.com; maintainers = with maintainers; [ jb55 MP2E ]; license = licenses.gpl2; - platforms = with platforms; linux; + platforms = [ "x86_64-linux" "i686-linux" ]; }; }