smartgithg: remove with statements

This commit is contained in:
Philip Taron 2024-08-16 12:07:40 -07:00
parent faa935f472
commit e659af6d2e
No known key found for this signature in database

View File

@ -26,10 +26,10 @@ stdenv.mkDerivation rec {
buildInputs = [ jre adwaita-icon-theme gtk3 ]; buildInputs = [ jre adwaita-icon-theme gtk3 ];
preFixup = with lib; '' preFixup = ''
gappsWrapperArgs+=( \ gappsWrapperArgs+=( \
--prefix PATH : ${makeBinPath [ jre which ]} \ --prefix PATH : ${lib.makeBinPath [ jre which ]} \
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
gtk3 gtk3
glib glib
libXtst libXtst
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
runHook postInstall runHook postInstall
''; '';
desktopItem = with lib; makeDesktopItem rec { desktopItem = makeDesktopItem rec {
name = "smartgit"; name = "smartgit";
exec = "smartgit"; exec = "smartgit";
comment = meta.description; comment = meta.description;