Merge pull request #110063 from romildo/upd.codeblocks

codeblocks: 17.12 -> 20.03

authored by

Sandro and committed by
GitHub
df1e6ef9 6a34d5ba

+7 -7
+7 -7
pkgs/applications/editors/codeblocks/default.nix
··· 1 - { lib, stdenv, fetchurl, autoreconfHook, libtool, pkg-config, file, zip, wxGTK, gtk2 2 - , contribPlugins ? false, hunspell, gamin, boost 1 + { lib, stdenv, fetchurl, pkg-config, file, zip, wxGTK30-gtk3, gtk3 2 + , contribPlugins ? false, hunspell, gamin, boost, wrapGAppsHook 3 3 }: 4 4 5 5 with lib; 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "${pname}-${lib.optionalString contribPlugins "full-"}${version}"; 9 - version = "17.12"; 9 + version = "20.03"; 10 10 pname = "codeblocks"; 11 11 12 12 src = fetchurl { 13 - url = "mirror://sourceforge/codeblocks/Sources/${version}/codeblocks_${version}.tar.xz"; 14 - sha256 = "1q2pph7md1p10i83rir2l4gvy7ym2iw8w6sk5vl995knf851m20k"; 13 + url = "mirror://sourceforge/codeblocks/Sources/${version}/codeblocks-${version}.tar.xz"; 14 + sha256 = "1idaksw1vacmm83krxh5zlb12kad3dkz9ixh70glw1gaibib7vhm"; 15 15 }; 16 16 17 - nativeBuildInputs = [ autoreconfHook pkg-config libtool file zip ]; 18 - buildInputs = [ wxGTK gtk2 ] 17 + nativeBuildInputs = [ pkg-config file zip wrapGAppsHook ]; 18 + buildInputs = [ wxGTK30-gtk3 gtk3 ] 19 19 ++ optionals contribPlugins [ hunspell gamin boost ]; 20 20 enableParallelBuilding = true; 21 21 patches = [ ./writable-projects.patch ];