microsoft_gsl: init at 2017-02-13
This commit is contained in:
parent
6515854248
commit
90d225db76
28
pkgs/development/libraries/microsoft_gsl/default.nix
Normal file
28
pkgs/development/libraries/microsoft_gsl/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, fetchgit, cmake }:
|
||||||
|
|
||||||
|
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
|
||||||
|
buildInputs = [ cmake ];
|
||||||
|
|
||||||
|
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; [ xwvvvvwx ];
|
||||||
|
};
|
||||||
|
}
|
@ -8826,6 +8826,8 @@ with pkgs;
|
|||||||
|
|
||||||
mhddfs = callPackage ../tools/filesystems/mhddfs { };
|
mhddfs = callPackage ../tools/filesystems/mhddfs { };
|
||||||
|
|
||||||
|
microsoft_gsl = callPackage ../development/libraries/microsoft_gsl { };
|
||||||
|
|
||||||
minizip = callPackage ../development/libraries/minizip { };
|
minizip = callPackage ../development/libraries/minizip { };
|
||||||
|
|
||||||
miro = callPackage ../applications/video/miro {
|
miro = callPackage ../applications/video/miro {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user