forked from rarias/bscpkgs
paraver: Downgrade wx to 2.8 and add wxpropgrid
Fixes a problem with i3 when opening a new timeline view, which caused a rapid switch between paraver main window and the timeline.
This commit is contained in:
26
bsc/wxpropgrid/default.nix
Normal file
26
bsc/wxpropgrid/default.nix
Normal file
@@ -0,0 +1,26 @@
|
||||
{
|
||||
stdenv
|
||||
, fetchurl
|
||||
, wxGTK28
|
||||
}:
|
||||
|
||||
let
|
||||
#wx = wxGTK31; # BUG
|
||||
wx = wxGTK28;
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wxpropgrid";
|
||||
version = "1.4.15";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://prdownloads.sourceforge.net/wxpropgrid/wxpropgrid-${version}-src.tar.gz";
|
||||
sha256 = "1f62468x5s4h775bn5svlkv0lzzh06aciljpiqn5k3w2arkaijgh";
|
||||
};
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
buildInputs = [
|
||||
wx
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user