2019-05-03 20:29:37 +01:00
|
|
|
{ stdenv, fetchFromGitHub, catch, cmake
|
2017-11-27 07:39:29 +00:00
|
|
|
}:
|
2017-02-15 23:11:38 +00:00
|
|
|
|
2017-11-27 07:39:29 +00:00
|
|
|
let
|
2018-08-20 19:43:41 +01:00
|
|
|
nativeBuild = stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-11-27 07:39:29 +00:00
|
|
|
in
|
2017-02-15 23:11:38 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "microsoft_gsl";
|
2020-01-07 01:18:15 +00:00
|
|
|
version = "2.1.0";
|
2017-02-15 23:11:38 +00:00
|
|
|
|
2019-05-03 20:29:37 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Microsoft";
|
|
|
|
repo = "GSL";
|
2019-05-03 09:00:21 +01:00
|
|
|
rev = "v${version}";
|
2020-01-07 01:18:15 +00:00
|
|
|
sha256 = "09f08lxqm00152bx9yrizlgabzpzxlpbv06h00z4w78yxywgxlgx";
|
2017-02-15 23:11:38 +00:00
|
|
|
};
|
|
|
|
|
2017-11-27 07:39:29 +00:00
|
|
|
# build phase just runs the unit tests, so skip it if
|
|
|
|
# we're doing a cross build
|
2019-05-03 09:00:21 +01:00
|
|
|
nativeBuildInputs = [ catch cmake ];
|
2017-11-27 07:39:29 +00:00
|
|
|
buildPhase = if nativeBuild then "make" else "true";
|
2017-02-15 23:11:38 +00:00
|
|
|
|
2019-09-13 10:35:50 +01:00
|
|
|
# https://github.com/microsoft/GSL/issues/806
|
|
|
|
cmakeFlags = [ "-DCMAKE_CXX_FLAGS=-Wno-catch-value" ];
|
|
|
|
|
2017-02-15 23:11:38 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/include
|
|
|
|
mv ../include/ $out/
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-05-24 10:24:11 +01: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 07:39:29 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2019-05-24 10:24:11 +01:00
|
|
|
maintainers = with maintainers; [ thoughtpolice xwvvvvwx yuriaisaka ];
|
2017-02-15 23:11:38 +00:00
|
|
|
};
|
|
|
|
}
|