pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, gettext }:
|
||||
{ lib, stdenv, fetchurl, gettext }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "m17n-db-1.8.0";
|
||||
@@ -10,15 +10,15 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ gettext ];
|
||||
|
||||
configureFlags = stdenv.lib.optional (stdenv ? glibc)
|
||||
configureFlags = lib.optional (stdenv ? glibc)
|
||||
"--with-charmaps=${stdenv.glibc.out}/share/i18n/charmaps"
|
||||
;
|
||||
|
||||
meta = {
|
||||
homepage = "https://www.nongnu.org/m17n/";
|
||||
description = "Multilingual text processing library (database)";
|
||||
license = stdenv.lib.licenses.lgpl21Plus;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = with lib.maintainers; [ astsmtl ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user