forked from mirrors/nixpkgs
cmake: 3.6.2 -> 3.7.1
This commit is contained in:
parent
ec4d73573a
commit
76c4b5fcca
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, pkgconfig
|
||||
, bzip2, curl, expat, libarchive, xz, zlib
|
||||
, bzip2, curl, expat, libarchive, xz, zlib, libuv
|
||||
, useNcurses ? false, ncurses, useQt4 ? false, qt4
|
||||
, wantPS ? false, ps ? null
|
||||
}:
|
||||
|
@ -12,8 +12,8 @@ assert stdenv.cc ? libc;
|
|||
|
||||
let
|
||||
os = stdenv.lib.optionalString;
|
||||
majorVersion = "3.6";
|
||||
minorVersion = "2";
|
||||
majorVersion = "3.7";
|
||||
minorVersion = "1";
|
||||
version = "${majorVersion}.${minorVersion}";
|
||||
in
|
||||
|
||||
|
@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
|
|||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}files/v${majorVersion}/cmake-${version}.tar.gz";
|
||||
sha256 = "0imkz04ncz6cv5659qfd4scm99k3siq7zrrsa8pvp663d8mf76hq";
|
||||
# from https://cmake.org/files/v3.7/cmake-3.7.1-SHA-256.txt
|
||||
sha256 = "449a5bce64dbd4d5b9517ebd1a1248ed197add6ad27934478976fd5f1f9330e1";
|
||||
};
|
||||
|
||||
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
||||
|
@ -37,7 +38,7 @@ stdenv.mkDerivation rec {
|
|||
setupHook = ./setup-hook.sh;
|
||||
|
||||
buildInputs =
|
||||
[ setupHook pkgconfig bzip2 curl expat libarchive xz zlib ]
|
||||
[ setupHook pkgconfig bzip2 curl expat libarchive xz zlib libuv ]
|
||||
++ optional useNcurses ncurses
|
||||
++ optional useQt4 qt4;
|
||||
|
||||
|
|
Loading…
Reference in a new issue