about summary refs log tree commit diff
path: root/pkgs/applications/networking/giara
diff options
context:
space:
mode:
authorDaniel Șerbănescu <daniel@serbanescu.dk>2023-06-18 14:19:00 +0200
committerDaniel Șerbănescu <daniel@serbanescu.dk>2023-06-18 14:19:00 +0200
commit95746260755de07e3711561386b0f405ae9c820b (patch)
treec5b01aa078fef2ef986688d0bb232f70bcd169a0 /pkgs/applications/networking/giara
parent2f9c0ffde850e882e651f5f5d1eb0041528ea9f6 (diff)
giara: 1.0.1 -> 1.1.0
Diffstat (limited to 'pkgs/applications/networking/giara')
-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 3e10a61a63f44..7335a60920243 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; {