pkgs/servers: stdenv.lib -> lib

This commit is contained in:
Ben Siraphob
2021-01-15 14:24:03 +07:00
parent e245ae3c3a
commit 872973d7d1
172 changed files with 454 additions and 455 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, callPackage }:
{ lib, stdenv, fetchurl, callPackage }:
let
# Probably a bug in some FreeDict release files, but easier to trivially
@@ -24,7 +24,7 @@ let
meta = {
description = "dictd-db dictionary for dictd";
platforms = stdenv.lib.platforms.linux;
platforms = lib.platforms.linux;
};
};
in rec {
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, fetchurl, python, dict, glibcLocales, writeScript}:
{lib, stdenv, fetchurl, python, dict, glibcLocales, writeScript}:
stdenv.mkDerivation rec {
version = "20161001";
@@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
description = "DICT version of English Wiktionary";
homepage = "http://en.wiktionary.org/";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}
+2 -2
View File
@@ -1,4 +1,4 @@
{stdenv, python, wordnet, writeScript}:
{lib, stdenv, python, wordnet, writeScript}:
stdenv.mkDerivation rec {
version = "542";
@@ -31,6 +31,6 @@ stdenv.mkDerivation rec {
homepage = "https://wordnet.princeton.edu/";
maintainers = [ ];
platforms = stdenv.lib.platforms.all;
platforms = lib.platforms.all;
};
}