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 ];
preFixup = with lib; ''
preFixup = ''
gappsWrapperArgs+=( \
--prefix PATH : ${makeBinPath [ jre which ]} \
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [
--prefix PATH : ${lib.makeBinPath [ jre which ]} \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [
gtk3
glib
libXtst
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
desktopItem = with lib; makeDesktopItem rec {
desktopItem = makeDesktopItem rec {
name = "smartgit";
exec = "smartgit";
comment = meta.description;