about summary refs log tree commit diff
path: root/pkgs/development/libraries/microsoft_gsl/default.nix
blob: 1c10bd6f8fcda78676460fdb3bed72f8192c1091 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchgit, cmake
, hostPlatform, buildPlatform
}:

let
  nativeBuild = hostPlatform == buildPlatform;
in
stdenv.mkDerivation rec {
  name = "microsoft_gsl-${version}";
  version = "2017-02-13";

  src = fetchgit {
    url = "https://github.com/Microsoft/GSL.git";
    rev = "3819df6e378ffccf0e29465afe99c3b324c2aa70";
    sha256 = "03d17mnx6n175aakin313308q14wzvaa9pd0m1yfk6ckhha4qf35";
  };


  # build phase just runs the unit tests, so skip it if
  # we're doing a cross build
  nativeBuildInputs = [ 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 ];
  };
}