prusa-slicer: use wxGTK31 instead of wxGTK30
With wxGTK31 3.1.0 there was a bug causing crashes. With the recently merged version 3.1.2 this bug has been fixed. See https://github.com/NixOS/nixpkgs/pull/55475 for details.
This commit is contained in:
parent
8e72ad4fbc
commit
ba917b29e6
1 changed files with 2 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ stdenv, lib, fetchFromGitHub, makeWrapper, cmake, pkgconfig
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, cmake, pkgconfig
|
||||||
, boost, cereal, curl, eigen, expat, glew, libpng, tbb, wxGTK30
|
, boost, cereal, curl, eigen, expat, glew, libpng, tbb, wxGTK31
|
||||||
, gtest, nlopt, xorg, makeDesktopItem
|
, gtest, nlopt, xorg, makeDesktopItem
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
|
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||||
glew
|
glew
|
||||||
libpng
|
libpng
|
||||||
tbb
|
tbb
|
||||||
wxGTK30
|
wxGTK31
|
||||||
xorg.libX11
|
xorg.libX11
|
||||||
] ++ checkInputs;
|
] ++ checkInputs;
|
||||||
|
|
||||||
|
@ -65,7 +65,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
cmakeFlags = [
|
cmakeFlags = [
|
||||||
"-DSLIC3R_FHS=1"
|
"-DSLIC3R_FHS=1"
|
||||||
"-DSLIC3R_WX_STABLE=1" # necessary when compiling against wxGTK 3.0
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
|
|
Loading…
Reference in a new issue