marker: 2020.04.04.2 -> 2023.05.02

aleksana d8cd7961 5c31944c

+9 -5
+9 -5
pkgs/applications/editors/marker/default.nix
··· 9 9 , gtk3 10 10 , gtksourceview 11 11 , gtkspell3 12 - , webkitgtk 12 + , webkitgtk_4_1 13 13 , pandoc 14 14 }: 15 15 16 16 stdenv.mkDerivation rec { 17 17 pname = "marker"; 18 - version = "2020.04.04.2"; 18 + version = "2023.05.02"; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "fabiocolacio"; 22 22 repo = "Marker"; 23 23 rev = version; 24 24 fetchSubmodules = true; 25 - sha256 = "sha256-wLR1FQqlLA02ed/JoAcxRHhIVua1FibAee1PC2zOPOM="; 25 + sha256 = "sha256-HhDhigQ6Aqo8R57Yrf1i69sM0feABB9El5R5OpzOyB0="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ ··· 37 37 gtk3 38 38 gtksourceview 39 39 gtkspell3 40 - webkitgtk 40 + webkitgtk_4_1 41 41 pandoc 42 42 ]; 43 43 44 + postPatch = '' 45 + meson rewrite kwargs set project / version '${version}' 46 + ''; 47 + 44 48 meta = with lib; { 45 49 homepage = "https://fabiocolacio.github.io/Marker/"; 46 - description = "Markdown editor for the Linux desktop"; 50 + description = "Markdown editor for the Linux desktop made with GTK3"; 47 51 maintainers = with maintainers; [ trepetti ]; 48 52 license = licenses.gpl3Plus; 49 53 platforms = platforms.linux;