nixpkgs/pkgs/development/libraries/microsoft_gsl/default.nix

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, catch, cmake
}:
2017-02-15 23:11:38 +00:00
let
nativeBuild = stdenv.hostPlatform == stdenv.buildPlatform;
in
2017-02-15 23:11:38 +00:00
stdenv.mkDerivation rec {
pname = "microsoft_gsl";
version = "2.0.0";
2017-02-15 23:11:38 +00:00
src = fetchFromGitHub {
owner = "Microsoft";
repo = "GSL";
rev = "v${version}";
sha256 = "1kxfca9ik934nkzyn34ingkyvwpc09li81cg1yc6vqcrdw51l4ri";
2017-02-15 23:11:38 +00:00
};
# build phase just runs the unit tests, so skip it if
# we're doing a cross build
nativeBuildInputs = [ catch cmake ];
buildPhase = if nativeBuild then "make" else "true";
2017-02-15 23:11:38 +00:00
installPhase = ''
mkdir -p $out/include
mv ../include/ $out/
'';
meta = with stdenv.lib; {
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";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ thoughtpolice xwvvvvwx yuriaisaka ];
2017-02-15 23:11:38 +00:00
};
}