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-11-26 21:34:02 -0800
committerRobert Schütz <nix@dotlambda.de>2022-12-08 17:28:53 -0800
commit5d4553b1631097793cd6963d300c8894dbf1fe8b (patch)
tree69eebd98ab6b4ff9f1fdd71c9d61d7b8903ac3ab /pkgs/applications/graphics/rnote
parenta4f2ca1ef3a09f64b6f8d117ad0364e6a105d36d (diff)
rnote: 0.5.7 -> 0.5.9
https://github.com/flxzt/rnote/releases/tag/v0.5.8
https://github.com/flxzt/rnote/releases/tag/v0.5.9
Diffstat (limited to 'pkgs/applications/graphics/rnote')
-rw-r--r--pkgs/applications/graphics/rnote/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/graphics/rnote/default.nix b/pkgs/applications/graphics/rnote/default.nix
index eb0eaaeda95d1..560c5c6a49275 100644
--- a/pkgs/applications/graphics/rnote/default.nix
+++ b/pkgs/applications/graphics/rnote/default.nix
@@ -6,7 +6,6 @@
 , clang
 , cmake
 , desktop-file-utils
-, gio-sharp
 , glib
 , gstreamer
 , gtk4
@@ -24,20 +23,20 @@
 
 stdenv.mkDerivation rec {
   pname = "rnote";
-  version = "0.5.7";
+  version = "0.5.9";
 
   src = fetchFromGitHub {
     owner = "flxzt";
     repo = "rnote";
     rev = "v${version}";
     fetchSubmodules = true;
-    hash = "sha256-w4y+t8idcaNwvC2Wp9SRjcd4m23Zt+yHG2fjOA2rBU8=";
+    hash = "sha256-Sy8EHl4UuDMwRAKDkl7njD9GSzKpy1Cfsgw53On+nxo=";
   };
 
   cargoDeps = rustPlatform.fetchCargoTarball {
     inherit src;
     name = "${pname}-${version}";
-    hash = "sha256-Hybbbokru4vz5ly3oZuNGdBa+lYbhdYjESUpRxIUqJc=";
+    hash = "sha256-Pe4lNcvJNELAitaGY56EUJ8iN7Dkh8DoUpA/t+aRuqk=";
   };
 
   nativeBuildInputs = [
@@ -60,7 +59,6 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     alsa-lib
-    gio-sharp
     glib
     gstreamer
     gtk4
@@ -81,6 +79,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     homepage = "https://github.com/flxzt/rnote";
+    changelog = "https://github.com/flxzt/rnote/releases/tag/${src.rev}";
     description = "Simple drawing application to create handwritten notes";
     license = licenses.gpl3Only;
     maintainers = with maintainers; [ dotlambda yrd ];