cmake: 3.19.0 -> 3.19.1
This fixes issues with building LibreSSL, which is required for the NixOS tests: https://cmake.org/cmake/help/latest/release/3.19.html#id1 > CMake 3.19.0 compiles source files with the `LANGUAGE` property by > passing an explicit language flag such as -x c. This is consistent > with the property’s documented meaning that the source file is written > in the specified language. However, it can break projects that were > using the property only to cause the specified language’s compiler to > be used. This has been reverted to restore behavior from CMake 3.18 > and below.
This commit is contained in:
parent
48b3694562
commit
31dfbca2d7
@ -20,12 +20,12 @@ stdenv.mkDerivation rec {
|
|||||||
+ lib.optionalString useNcurses "-cursesUI"
|
+ lib.optionalString useNcurses "-cursesUI"
|
||||||
+ lib.optionalString withQt5 "-qt5UI"
|
+ lib.optionalString withQt5 "-qt5UI"
|
||||||
+ lib.optionalString useQt4 "-qt4UI";
|
+ lib.optionalString useQt4 "-qt4UI";
|
||||||
version = "3.19.0";
|
version = "3.19.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "${meta.homepage}files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
|
url = "${meta.homepage}files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
|
||||||
# compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
|
# compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
|
||||||
sha256 = "14zlrb7awiazxc5wlvgah9rw1dm4ziczbxiyqsvp4zmaan0ninpx";
|
sha256 = "1fisi9rlijw9wd0yjzk1c6j7ljnb2yiq5iqnrz6m1xkflyinw9hx";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
Loading…
x
Reference in New Issue
Block a user