Merge pull request #137928 from bobby285271/khronos-3.5.9

khronos: 1.0.8 -> 3.5.9

authored by

davidak and committed by
GitHub
2bb5cbf7 254847bc

+9 -7
+9 -7
pkgs/applications/office/khronos/default.nix
··· 9 9 , pantheon 10 10 , python3 11 11 , glib 12 - , gtk3 12 + , gtk4 13 13 , json-glib 14 + , libadwaita 14 15 , libgee 15 16 , wrapGAppsHook 16 17 }: 17 18 18 19 stdenv.mkDerivation rec { 19 20 pname = "khronos"; 20 - version = "1.0.8"; 21 + version = "3.5.9"; 21 22 22 23 src = fetchFromGitHub { 23 24 owner = "lainsce"; 24 25 repo = pname; 25 26 rev = version; 26 - sha256 = "0d5ma1d86lh2apagwrwk0d1v1cm3fifjivhf530nlznb67vi1x80"; 27 + sha256 = "sha256-3FatmyANB/tNYSN2hu5IVkyCy0YrC3uA2d/3+5u48w8="; 27 28 }; 28 29 29 30 nativeBuildInputs = [ ··· 38 39 39 40 buildInputs = [ 40 41 glib 41 - gtk3 42 + gtk4 42 43 json-glib 44 + libadwaita 43 45 libgee 44 46 pantheon.granite 45 47 ]; 46 48 47 49 postPatch = '' 48 - chmod +x meson/post_install.py 49 - patchShebangs meson/post_install.py 50 + chmod +x build-aux/post_install.py 51 + patchShebangs build-aux/post_install.py 50 52 ''; 51 53 52 54 passthru = { ··· 60 62 homepage = "https://github.com/lainsce/khronos"; 61 63 maintainers = with maintainers; [ xiorcale ] ++ pantheon.maintainers; 62 64 platforms = platforms.linux; 63 - license = licenses.gpl3; 65 + license = licenses.gpl3Plus; 64 66 }; 65 67 }