summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-11-03 16:16:08 +0100
committerGitHub <noreply@github.com>2023-11-03 16:16:08 +0100
commitefcf924e01b3285c8fb0afc87e3477a3b5db0f32 (patch)
treeb8567e4f547df5e57778e1c8f42ac04fc5085236 /pkgs
parent1a10fd460f883bac970eb56c9012e6eb34454b42 (diff)
parentb2f5063aeddbe51337b61d9d39fb04675dc49236 (diff)
Merge pull request #264898 from FliegendeWurst/gnunet-gtk-icon
gnunet-gtk: copy missing logo image
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/networking/p2p/gnunet/gtk.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/applications/networking/p2p/gnunet/gtk.nix b/pkgs/applications/networking/p2p/gnunet/gtk.nix
index a915e3fed8e06..94504f2b99563 100644
--- a/pkgs/applications/networking/p2p/gnunet/gtk.nix
+++ b/pkgs/applications/networking/p2p/gnunet/gtk.nix
@@ -38,7 +38,11 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--with-gnunet=${gnunet}" ];
 
-  patchPhase = "patchShebangs pixmaps/icon-theme-installer";
+  postPatch = "patchShebangs pixmaps/icon-theme-installer";
+
+  postInstall = ''
+    ln -s $out/share/gnunet-gtk/gnunet_logo.png $out/share/gnunet/gnunet-logo-color.png
+  '';
 
   meta = gnunet.meta // {
     description = "GNUnet GTK User Interface";