diff options
| author | Peter Hoeg <peter@hoeg.com> | 2020-06-16 23:11:23 +0800 |
|---|---|---|
| committer | Peter Hoeg <peter@hoeg.com> | 2020-06-16 23:11:23 +0800 |
| commit | 36ced23682834f7e4986b6de8894a71d2e64cfd4 (patch) | |
| tree | b3c3bb677aa4a96fe966098a156102f0c2160d3c | |
| parent | wxsqlite3: create gtk2/3 variants and use them (diff) | |
| download | nixpkgs-origin/wxgtk_fix.tar.gz | |
woeusb: build with wxGTK3-gtk3origin/wxgtk_fix
| -rw-r--r-- | pkgs/tools/misc/woeusb/default.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/tools/misc/woeusb/default.nix b/pkgs/tools/misc/woeusb/default.nix index 4c235b4866f2..621ba2121b29 100644 --- a/pkgs/tools/misc/woeusb/default.nix +++ b/pkgs/tools/misc/woeusb/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, autoreconfHook, makeWrapper , coreutils, dosfstools, findutils, gawk, gnugrep, grub2_light, ncurses, ntfs3g, parted, p7zip, utillinux, wget -, wxGTK30 }: +, wxGTK30-gtk3, gsettings_desktop_schemas }: stdenv.mkDerivation rec { version = "3.3.1"; @@ -16,7 +16,10 @@ stdenv.mkDerivation rec { patches = [ ./remove-workaround.patch ]; nativeBuildInputs = [ autoreconfHook makeWrapper ]; - buildInputs = [ wxGTK30 ]; + + buildInputs = [ wxGTK30-gtk3 gsettings_desktop_schemas ]; + + enableParallelBuilding = true; postPatch = '' # Emulate version smudge filter (see .gitattributes, .gitconfig). |
