3
0
Fork 0
forked from mirrors/nixpkgs

pipelight: Only works on x86

https://hydra.nixos.org/build/65195994
This commit is contained in:
Tuomas Tynkkynen 2017-12-05 23:26:26 +02:00
parent b04040cce4
commit 53bf3cc78c

View file

@ -57,6 +57,6 @@ in stdenv.mkDerivation rec {
license = with stdenv.lib.licenses; [ mpl11 gpl2 lgpl21 ];
description = "A wrapper for using Windows plugins in Linux browsers";
maintainers = with stdenv.lib.maintainers; [ skeidel ];
platforms = with stdenv.lib.platforms; linux;
platforms = [ "x86_64-linux" "i686-linux" ];
};
}