2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, catch, cmake
|
2017-11-27 08:39:29 +01:00
|
|
|
}:
|
2017-02-16 00:11:38 +01:00
|
|
|
|
2017-11-27 08:39:29 +01:00
|
|
|
let
|
2018-08-20 20:43:41 +02:00
|
|
|
nativeBuild = stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-11-27 08:39:29 +01:00
|
|
|
in
|
2017-02-16 00:11:38 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "microsoft_gsl";
|
2020-01-07 02:18:15 +01:00
|
|
|
version = "2.1.0";
|
2017-02-16 00:11:38 +01:00
|
|
|
|
2019-05-03 21:29:37 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Microsoft";
|
|
|
|
repo = "GSL";
|
2019-05-03 10:00:21 +02:00
|
|
|
rev = "v${version}";
|
2020-01-07 02:18:15 +01:00
|
|
|
sha256 = "09f08lxqm00152bx9yrizlgabzpzxlpbv06h00z4w78yxywgxlgx";
|
2017-02-16 00:11:38 +01:00
|
|
|
};
|
|
|
|
|
2017-11-27 08:39:29 +01:00
|
|
|
# build phase just runs the unit tests, so skip it if
|
|
|
|
# we're doing a cross build
|
2019-05-03 10:00:21 +02:00
|
|
|
nativeBuildInputs = [ catch cmake ];
|
2017-11-27 08:39:29 +01:00
|
|
|
buildPhase = if nativeBuild then "make" else "true";
|
2017-02-16 00:11:38 +01:00
|
|
|
|
2019-09-13 11:35:50 +02:00
|
|
|
# https://github.com/microsoft/GSL/issues/806
|
2021-05-17 22:14:49 +02:00
|
|
|
cmakeFlags = lib.optionals stdenv.cc.isGNU
|
|
|
|
[ "-DCMAKE_CXX_FLAGS=-Wno-catch-value" ];
|
2019-09-13 11:35:50 +02:00
|
|
|
|
2017-02-16 00:11:38 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/include
|
|
|
|
mv ../include/ $out/
|
|
|
|
'';
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2019-05-24 11:24:11 +02:00
|
|
|
description = "C++ Core Guideline support library";
|
|
|
|
longDescription = ''
|
|
|
|
The Guideline Support Library (GSL) contains functions and types that are suggested for
|
|
|
|
use by the C++ Core Guidelines maintained by the Standard C++ Foundation.
|
|
|
|
This package contains Microsoft's implementation of GSL.
|
|
|
|
'';
|
|
|
|
homepage = "https://github.com/Microsoft/GSL";
|
2017-11-27 08:39:29 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2019-05-24 11:24:11 +02:00
|
|
|
maintainers = with maintainers; [ thoughtpolice xwvvvvwx yuriaisaka ];
|
2017-02-16 00:11:38 +01:00
|
|
|
};
|
|
|
|
}
|