about summary refs log tree commit diff
path: root/pkgs/applications/graphics/rnote
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2022-12-23 02:05:18 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-23 02:35:12 -0800
commite09b8fd2005505a13139966ef5340323375c60a7 (patch)
tree57fa0981dd7c78803fda1641eb916c8bb85ffd6c /pkgs/applications/graphics/rnote
parentbc55008de1c60541ef5e79b6bbbfea62e3d15e95 (diff)
rnote: 0.5.9 -> 0.5.10
https://github.com/flxzt/rnote/releases/tag/v0.5.10
Diffstat (limited to 'pkgs/applications/graphics/rnote')
-rw-r--r--pkgs/applications/graphics/rnote/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/rnote/default.nix b/pkgs/applications/graphics/rnote/default.nix
index 560c5c6a49275..a7b96c4227e37 100644
--- a/pkgs/applications/graphics/rnote/default.nix
+++ b/pkgs/applications/graphics/rnote/default.nix
@@ -23,20 +23,20 @@
 
 stdenv.mkDerivation rec {
   pname = "rnote";
-  version = "0.5.9";
+  version = "0.5.10";
 
   src = fetchFromGitHub {
     owner = "flxzt";
     repo = "rnote";
     rev = "v${version}";
     fetchSubmodules = true;
-    hash = "sha256-Sy8EHl4UuDMwRAKDkl7njD9GSzKpy1Cfsgw53On+nxo=";
+    hash = "sha256-k1Ov35cz2U39yuIYIr9MW6M/A8MNasoybELC4U3xok0=";
   };
 
   cargoDeps = rustPlatform.fetchCargoTarball {
     inherit src;
     name = "${pname}-${version}";
-    hash = "sha256-Pe4lNcvJNELAitaGY56EUJ8iN7Dkh8DoUpA/t+aRuqk=";
+    hash = "sha256-MsLpZl8AvF2BJU6PfC8BmTADR7T3e7+HstHQa+YYJFo=";
   };
 
   nativeBuildInputs = [
@@ -71,8 +71,8 @@ stdenv.mkDerivation rec {
 
   postPatch = ''
     pushd build-aux
-    chmod +x meson_post_install.py
-    patchShebangs meson_post_install.py
+    chmod +x cargo_build.py meson_post_install.py
+    patchShebangs cargo_build.py meson_post_install.py
     substituteInPlace meson_post_install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
     popd
   '';