appeditor: 1.1.3 -> 1.1.5

https://github.com/donadigo/appeditor/compare/1.1.3...1.1.5

+2 -7
+2 -7
pkgs/applications/misc/appeditor/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "appeditor"; 19 - version = "1.1.3"; 19 + version = "1.1.5"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "donadigo"; 23 23 repo = "appeditor"; 24 24 rev = version; 25 - sha256 = "sha256-0zutz1nnThyF7h44cDxjE53hhAJfJf6DTs9p4HflXr8="; 25 + sha256 = "sha256-A0YasHw5osGrgUPiUPuRBnv1MR/Pth6jVHGEx/klOGY="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 43 43 ]; 44 44 45 45 postPatch = '' 46 - # Fix build with vala 0.56 47 - # https://github.com/donadigo/appeditor/pull/122 48 - substituteInPlace src/Application.vala \ 49 - --replace "private static string? create_exec_filename;" "public static string? create_exec_filename;" 50 - 51 46 chmod +x meson/post_install.py 52 47 patchShebangs meson/post_install.py 53 48 '';