about summary refs log tree commit diff
path: root/pkgs/applications/networking/giara/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/networking/giara/default.nix')
-rw-r--r--pkgs/applications/networking/giara/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/applications/networking/giara/default.nix b/pkgs/applications/networking/giara/default.nix
index 3e10a61a63f4..7335a6092024 100644
--- a/pkgs/applications/networking/giara/default.nix
+++ b/pkgs/applications/networking/giara/default.nix
@@ -18,7 +18,7 @@
 }:
 python3.pkgs.buildPythonApplication rec {
   pname = "giara";
-  version = "1.0.1";
+  version = "1.1.0";
 
   format = "other";
 
@@ -27,7 +27,7 @@ python3.pkgs.buildPythonApplication rec {
     owner = "World";
     repo = pname;
     rev = version;
-    hash = "sha256-hKaniW+bbuKUrETMQGWwvC2kyudK9tCE/R69dOFzdQM=";
+    hash = "sha256-FTy0ElcoTGXG9eV85pUrF35qKDKOfYIovPtjLfTJVOg=";
   };
 
   nativeBuildInputs = [
@@ -62,6 +62,9 @@ python3.pkgs.buildPythonApplication rec {
   postPatch = ''
     substituteInPlace meson_post_install.py \
       --replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
+    # blueprint-compiler expects "profile" to be a string.
+    substituteInPlace data/ui/headerbar.blp \
+      --replace "item { custom: profile; }" 'item { custom: "profile"; }'
   '';
 
   meta = with lib; {