pkgs/os-specific: stdenv.lib -> lib
This commit is contained in:
@@ -19,13 +19,13 @@ stdenv.mkDerivation {
|
||||
|
||||
# cmakeFlags = [ "-DWIN32=1" "-DCMAKE_SYSTEM_NAME=Windows" "-DCMAKE_RC_COMPILER=${stdenv.cc.targetPrefix}windres" ];
|
||||
|
||||
preBuild = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
||||
preBuild = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
||||
export NIX_CROSS_CFLAGS_COMPILE=-fpermissive
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://qt-project.org/wiki/jom";
|
||||
description = "Clone of nmake supporting multiple independent commands in parallel";
|
||||
license = stdenv.lib.licenses.gpl2Plus; # Explicitly, GPLv2 or GPLv3, but not later.
|
||||
license = lib.licenses.gpl2Plus; # Explicitly, GPLv2 or GPLv3, but not later.
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user