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
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, pkgconfig, makeDesktopItem, unzip, fpc, lazarus,
{ lib, stdenv, fetchFromGitHub, pkgconfig, makeDesktopItem, unzip, fpc, lazarus,
libX11, glib, gtk2, gdk-pixbuf, pango, atk, cairo, openssl }:
stdenv.mkDerivation rec {
@@ -48,11 +48,11 @@ stdenv.mkDerivation rec {
comment = meta.description;
desktopName = "Transmission Remote GUI";
genericName = "BitTorrent Client";
categories = stdenv.lib.concatStringsSep ";" [
categories = lib.concatStringsSep ";" [
"Application" "Network" "FileTransfer" "P2P" "GTK"
];
startupNotify = "true";
mimeType = stdenv.lib.concatStringsSep ";" [
mimeType = lib.concatStringsSep ";" [
"application/x-bittorrent" "x-scheme-handler/magnet"
];
};
@@ -69,8 +69,8 @@ stdenv.mkDerivation rec {
meta = {
description = "A cross platform front-end for the Transmission Bit-Torrent client";
homepage = "https://sourceforge.net/p/transgui";
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [ ramkromberg ];
platforms = stdenv.lib.platforms.linux;
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ramkromberg ];
platforms = lib.platforms.linux;
};
}