Merge pull request #33827 from eqyiel/nextcloud-client-icon-fix

nextcloud-client: fix icon name in desktop file

authored by Joachim F and committed by GitHub e18b4e86 0ab78963

+4 -1
+4 -1
pkgs/applications/networking/nextcloud-client/default.nix
··· 36 "-DINOTIFY_INCLUDE_DIR=${inotify-tools}/include" 37 ]; 38 39 - postInstall = stdenv.lib.optionalString (withGnomeKeyring) '' 40 wrapProgram "$out/bin/nextcloud" \ 41 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libgnome_keyring ]} 42 '';
··· 36 "-DINOTIFY_INCLUDE_DIR=${inotify-tools}/include" 37 ]; 38 39 + postInstall = '' 40 + sed -i 's/\(Icon.*\)=nextcloud/\1=Nextcloud/g' \ 41 + $out/share/applications/nextcloud.desktop 42 + '' + stdenv.lib.optionalString (withGnomeKeyring) '' 43 wrapProgram "$out/bin/nextcloud" \ 44 --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libgnome_keyring ]} 45 '';