Merge pull request #207402 from dotlambda/rnote-0.5.10

rnote: 0.5.9 -> 0.5.10

authored by figsoda and committed by GitHub 58236ec8 7b560e97

+5 -5
+5 -5
pkgs/applications/graphics/rnote/default.nix
··· 23 23 24 24 stdenv.mkDerivation rec { 25 25 pname = "rnote"; 26 - version = "0.5.9"; 26 + version = "0.5.10"; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "flxzt"; 30 30 repo = "rnote"; 31 31 rev = "v${version}"; 32 32 fetchSubmodules = true; 33 - hash = "sha256-Sy8EHl4UuDMwRAKDkl7njD9GSzKpy1Cfsgw53On+nxo="; 33 + hash = "sha256-k1Ov35cz2U39yuIYIr9MW6M/A8MNasoybELC4U3xok0="; 34 34 }; 35 35 36 36 cargoDeps = rustPlatform.fetchCargoTarball { 37 37 inherit src; 38 38 name = "${pname}-${version}"; 39 - hash = "sha256-Pe4lNcvJNELAitaGY56EUJ8iN7Dkh8DoUpA/t+aRuqk="; 39 + hash = "sha256-MsLpZl8AvF2BJU6PfC8BmTADR7T3e7+HstHQa+YYJFo="; 40 40 }; 41 41 42 42 nativeBuildInputs = [ ··· 71 71 72 72 postPatch = '' 73 73 pushd build-aux 74 - chmod +x meson_post_install.py 75 - patchShebangs meson_post_install.py 74 + chmod +x cargo_build.py meson_post_install.py 75 + patchShebangs cargo_build.py meson_post_install.py 76 76 substituteInPlace meson_post_install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache" 77 77 popd 78 78 '';