pkgs/applications: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent 2e34288f0d
commit 108bdac3d9
427 changed files with 1160 additions and 1154 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, fetchpatch, bison, flex, autoconf, automake, openssl }:
{ lib, stdenv, fetchurl, fetchpatch, bison, flex, autoconf, automake, openssl }:
stdenv.mkDerivation rec {
pname = "bip";
@@ -42,8 +42,8 @@ stdenv.mkDerivation rec {
meta = {
description = "An IRC proxy (bouncer)";
homepage = "http://bip.milkypond.org/";
license = stdenv.lib.licenses.gpl2;
license = lib.licenses.gpl2;
downloadPage = "https://projects.duckcorp.org/projects/bip/files";
platforms = stdenv.lib.platforms.linux;
platforms = lib.platforms.linux;
};
}
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
"COMMUNI_INSTALL_THEMES=${placeholder "out"}/share/communi/themes"
];
postInstall = stdenv.lib.optionalString stdenv.isLinux ''
postInstall = lib.optionalString stdenv.isLinux ''
substituteInPlace "$out/share/applications/communi.desktop" \
--replace "/usr/bin" "$out/bin"
'';
@@ -1,8 +1,8 @@
{ stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper, shortenPerlShebang
{ lib, stdenv, fetchFromGitHub, perl, perlPackages, makeWrapper, shortenPerlShebang
, nixosTests
}:
with stdenv.lib;
with lib;
perlPackages.buildPerlPackage rec {
pname = "convos";
@@ -71,7 +71,7 @@ perlPackages.buildPerlPackage rec {
meta = {
homepage = "https://convos.chat";
description = "Convos is the simplest way to use IRC in your browser";
license = stdenv.lib.licenses.artistic2;
license = lib.licenses.artistic2;
maintainers = with maintainers; [ sgo ];
};
}
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
# Darwin needs libiconv, tcl; while Linux build don't
buildInputs = [ openssl ncurses ]
++ stdenv.lib.optionals stdenv.isDarwin [ libiconv tcl ];
++ lib.optionals stdenv.isDarwin [ libiconv tcl ];
patches = [
(fetchpatch {
@@ -1,4 +1,4 @@
{stdenv, fetchurl}:
{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "ii-1.8";
@@ -14,8 +14,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://tools.suckless.org/ii/";
license = stdenv.lib.licenses.mit;
license = lib.licenses.mit;
description = "Irc it, simple FIFO based irc client";
platforms = stdenv.lib.platforms.unix;
platforms = lib.platforms.unix;
};
}
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }:
{ lib, stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintl, libgcrypt, libotr }:
stdenv.mkDerivation rec {
pname = "irssi";
@@ -23,8 +23,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://irssi.org";
description = "A terminal based IRC client";
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
license = stdenv.lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ lovek323 ];
license = lib.licenses.gpl2Plus;
};
}
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, irssi, gmp, automake, autoconf, libtool, openssl, glib, pkgconfig }:
{ lib, stdenv, fetchurl, irssi, gmp, automake, autoconf, libtool, openssl, glib, pkgconfig }:
stdenv.mkDerivation rec {
name = "fish-irssi-20130413-e98156bebd";
src = fetchurl {
url = "https://github.com/falsovsky/FiSH-irssi/tarball/e98156bebd";
name = "${name}.tar.gz";
@@ -20,13 +20,13 @@ stdenv.mkDerivation rec {
mkdir -p $out/lib/irssi/modules
cp src/.libs/libfish.so $out/lib/irssi/modules
'';
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gmp automake autoconf libtool openssl glib ];
meta = {
homepage = "https://github.com/falsovsky/FiSH-irssi";
license = stdenv.lib.licenses.unfree; # I can't find any mention of license
maintainers = with stdenv.lib.maintainers; [viric];
license = lib.licenses.unfree; # I can't find any mention of license
maintainers = with lib.maintainers; [viric];
};
}
@@ -1,4 +1,4 @@
{ stdenv, fetchurl }:
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "sic";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
meta = {
description = "Simple IRC client";
homepage = "https://tools.suckless.org/sic/";
license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.unix;
license = lib.licenses.mit;
platforms = lib.platforms.unix;
};
}
@@ -37,7 +37,7 @@ let
outputs = [ "out" "man" ] ++ map (p: p.name) enabledPlugins;
cmakeFlags = with stdenv.lib; [
cmakeFlags = with lib; [
"-DENABLE_MAN=ON"
"-DENABLE_DOC=ON"
"-DENABLE_JAVASCRIPT=OFF" # Requires v8 <= 3.24.3, https://github.com/weechat/weechat/issues/360
@@ -48,7 +48,7 @@ let
;
nativeBuildInputs = [ cmake pkg-config makeWrapper asciidoctor ];
buildInputs = with stdenv.lib; [
buildInputs = with lib; [
ncurses openssl aspell gnutls gettext zlib curl
libgcrypt ]
++ optionals stdenv.isDarwin [ libobjc libresolv ]
@@ -57,9 +57,9 @@ let
NIX_CFLAGS_COMPILE = "-I${python}/include/${python.libPrefix}"
# Fix '_res_9_init: undefined symbol' error
+ (stdenv.lib.optionalString stdenv.isDarwin "-DBIND_8_COMPAT=1 -lresolv");
+ (lib.optionalString stdenv.isDarwin "-DBIND_8_COMPAT=1 -lresolv");
postInstall = with stdenv.lib; ''
postInstall = with lib; ''
for p in ${concatMapStringsSep " " (p: p.name) enabledPlugins}; do
from=$out/lib/weechat/plugins/$p.so
to=''${!p}/lib/weechat/plugins/$p.so
@@ -76,8 +76,8 @@ let
(eg. adding python modules for scripts that would require them, etc.)
on https://nixos.org/nixpkgs/manual/#sec-weechat .
'';
license = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ lovek323 lheckemann ];
platforms = stdenv.lib.platforms.unix;
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ lovek323 lheckemann ];
platforms = lib.platforms.unix;
};
}
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, openssl }:
with stdenv;
with stdenv.lib;
with lib;
mkDerivation rec {
pname = "wraith";