pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl, gettext}:
|
||||
{lib, stdenv, fetchurl, gettext}:
|
||||
|
||||
assert stdenv.isLinux && stdenv ? glibc;
|
||||
|
||||
@@ -37,7 +37,7 @@ stdenv.mkDerivation {
|
||||
./set-buildroot.patch
|
||||
]
|
||||
|
||||
++ stdenv.lib.optional (stdenv.hostPlatform.system == "x86_64-linux")
|
||||
++ lib.optional (stdenv.hostPlatform.system == "x86_64-linux")
|
||||
# Force use of old memcpy so that installwatch works on Glibc <
|
||||
# 2.14.
|
||||
./use-old-memcpy.patch;
|
||||
@@ -67,8 +67,8 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
homepage = "http://checkinstall.izto.org/";
|
||||
description = "A tool for automatically generating Slackware, RPM or Debian packages when doing `make install'";
|
||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.eelco ];
|
||||
platforms = lib.platforms.linux;
|
||||
license = lib.licenses.gpl2;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user