mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
cda148062a
GSL now has an official release. Upgrade microsoft_gsl to the latest release (made August 20, 2018).
36 lines
930 B
Nix
36 lines
930 B
Nix
{ stdenv, fetchgit, catch, cmake
|
|
}:
|
|
|
|
let
|
|
nativeBuild = stdenv.hostPlatform == stdenv.buildPlatform;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "microsoft_gsl-${version}";
|
|
version = "2.0.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://github.com/Microsoft/GSL.git";
|
|
rev = "v${version}";
|
|
sha256 = "1kxfca9ik934nkzyn34ingkyvwpc09li81cg1yc6vqcrdw51l4ri";
|
|
};
|
|
|
|
|
|
# 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";
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include
|
|
mv ../include/ $out/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Functions and types that are suggested for use by the C++ Core Guidelines";
|
|
homepage = https://github.com/Microsoft/GSL;
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ thoughtpolice xwvvvvwx ];
|
|
};
|
|
}
|