mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 16:24:10 +00:00
smartgithg: remove with statements
This commit is contained in:
parent
faa935f472
commit
e659af6d2e
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user