6054a020d9
range-v3, tl-expected: Remove myself as maintainer
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "range-v3";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ericniebler";
|
|
repo = "range-v3";
|
|
rev = version;
|
|
sha256 = "18230bg4rq9pmm5f8f65j444jpq56rld4fhmpham8q3vr1c1bdjh";
|
|
};
|
|
|
|
patches = [
|
|
./gcc10.patch
|
|
(fetchpatch {
|
|
url = "https://github.com/ericniebler/range-v3/commit/66e847d4e14be3a369b7e26a03a172b20e62c003.patch";
|
|
sha256 = "sha256-JOQptVqNicdMhcDhBrWQRf7MfskBv56cICwvMA8g88Y=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
# Building the tests currently fails on AArch64 due to internal compiler
|
|
# errors (with GCC 9.2):
|
|
cmakeFlags = [ "-DRANGES_ENABLE_WERROR=OFF" ]
|
|
++ lib.optional stdenv.isAarch64 "-DRANGE_V3_TESTS=OFF";
|
|
|
|
doCheck = !stdenv.isAarch64;
|
|
checkTarget = "test";
|
|
|
|
meta = with lib; {
|
|
description = "Experimental range library for C++11/14/17";
|
|
homepage = "https://github.com/ericniebler/range-v3";
|
|
changelog = "https://github.com/ericniebler/range-v3/releases/tag/${version}";
|
|
license = licenses.boost;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|