pkgs/tools: stdenv.lib -> lib
This commit is contained in:
@@ -16,21 +16,21 @@ stdenv.mkDerivation rec {
|
||||
"--enable-colors256"
|
||||
];
|
||||
|
||||
patches = stdenv.lib.optional stdenv.hostPlatform.isMusl
|
||||
patches = lib.optional stdenv.hostPlatform.isMusl
|
||||
(fetchpatch {
|
||||
url = "https://gist.githubusercontent.com/yujinakayama/4608863/raw/76b9f89af5e5a2e97d9a0f36aac989fb56cf1447/gistfile1.diff";
|
||||
sha256 = "0f9bf83p8zdxaa1pr75jyf5g8xr3r8kv7cyzzbpraa1q4j15ss1p";
|
||||
stripLen = 1;
|
||||
});
|
||||
|
||||
postPatch = stdenv.lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform)
|
||||
postPatch = lib.optionalString (stdenv.buildPlatform != stdenv.hostPlatform)
|
||||
# XXX: Awful hack to allow cross-compilation.
|
||||
'' sed -i ./configure \
|
||||
-e 's/^as_fn_error .. \("cannot run test program while cross compiling\)/$as_echo \1/g'
|
||||
''; # "
|
||||
|
||||
buildInputs = [ ncurses ] ++ stdenv.lib.optional stdenv.isLinux pam
|
||||
++ stdenv.lib.optional stdenv.isDarwin utmp;
|
||||
buildInputs = [ ncurses ] ++ lib.optional stdenv.isLinux pam
|
||||
++ lib.optional stdenv.isDarwin utmp;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user