nixpkgs/pkgs/development/libraries/range-v3/default.nix

33 lines
857 B
Nix
Raw Normal View History

2018-03-01 22:46:03 +01:00
{ stdenv, fetchFromGitHub, cmake }:
2017-02-11 19:10:46 +01:00
stdenv.mkDerivation rec {
pname = "range-v3";
2019-12-09 14:37:52 +01:00
version = "0.10.0";
2017-02-11 19:10:46 +01:00
src = fetchFromGitHub {
owner = "ericniebler";
repo = "range-v3";
2018-03-01 22:35:15 +01:00
rev = version;
2019-12-09 14:37:52 +01:00
sha256 = "1h9h5j7pdi0afpip9ncq76h1xjhvb8bnm585q17afz2l4fydy8qj";
2017-02-11 19:10:46 +01:00
};
2018-03-01 22:46:03 +01:00
nativeBuildInputs = [ cmake ];
# Building the tests currently fails on AArch64 due to internal compiler
# errors (with GCC 9.2):
cmakeFlags = stdenv.lib.optional stdenv.isAarch64 "-DRANGE_V3_TESTS=OFF";
doCheck = !stdenv.isAarch64;
2018-03-01 22:46:03 +01:00
checkTarget = "test";
enableParallelBuilding = true;
2017-02-11 19:10:46 +01:00
meta = with stdenv.lib; {
description = "Experimental range library for C++11/14/17";
homepage = "https://github.com/ericniebler/range-v3";
2017-02-11 19:10:46 +01:00
license = licenses.boost;
platforms = platforms.all;
maintainers = with maintainers; [ primeos xwvvvvwx ];
2017-02-11 19:10:46 +01:00
};
}