Skip to content

Commit

Permalink
obs-studio: restrict meta.platforms
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
vcunat committed Jan 5, 2019
1 parent 2acda72 commit a68ae2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/applications/video/obs-studio/default.nix
Expand Up @@ -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" ];
};
}

0 comments on commit a68ae2c

Please sign in to comment.