treewide: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-16 17:58:11 +07:00
parent a9bb54359e
commit badf51221d
977 changed files with 2613 additions and 2613 deletions
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
buildInputs = [ jre gnome3.adwaita-icon-theme gtk3 ];
preFixup = with stdenv.lib; ''
preFixup = with lib; ''
gappsWrapperArgs+=( \
--prefix PATH : ${makeBinPath [ jre which ]} \
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [
@@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
desktopItem = with stdenv.lib; makeDesktopItem rec {
desktopItem = with lib; makeDesktopItem rec {
name = "smartgit";
exec = "smartgit";
comment = meta.description;
@@ -89,6 +89,6 @@ stdenv.mkDerivation rec {
homepage = "https://www.syntevo.com/smartgit/";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ jraygauthier ];
maintainers = with lib.maintainers; [ jraygauthier ];
};
}