playonlinux: attempt to fix Hydra failure
This commit is contained in:
parent
3f8ca3c676
commit
01a49270a8
1 changed files with 2 additions and 2 deletions
|
@ -42,7 +42,7 @@ let
|
||||||
ld32 =
|
ld32 =
|
||||||
if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32"
|
if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32"
|
||||||
else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
|
else if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker"
|
||||||
else abort "Unsupported platform for PlayOnLinux";
|
else abort "Unsupported platform for PlayOnLinux: ${stdenv.system}";
|
||||||
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
|
ld64 = "${stdenv.cc}/nix-support/dynamic-linker";
|
||||||
libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xlibs.libX11 ];
|
libs = pkgs: stdenv.lib.makeLibraryPath [ pkgs.xlibs.libX11 ];
|
||||||
|
|
||||||
|
@ -95,6 +95,6 @@ in stdenv.mkDerivation {
|
||||||
homepage = https://www.playonlinux.com/;
|
homepage = https://www.playonlinux.com/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = [ maintainers.a1russell ];
|
maintainers = [ maintainers.a1russell ];
|
||||||
platforms = platforms.linux;
|
platforms = [ "x86_64-linux" "i686-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue