nixpkgs/pkgs/development/libraries/range-v3/default.nix

29 lines
663 B
Nix
Raw Normal View History

2018-03-01 21:46:03 +00:00
{ stdenv, fetchFromGitHub, cmake }:
2017-02-11 18:10:46 +00:00
stdenv.mkDerivation rec {
pname = "range-v3";
2019-12-09 13:37:52 +00:00
version = "0.10.0";
2017-02-11 18:10:46 +00:00
src = fetchFromGitHub {
owner = "ericniebler";
repo = "range-v3";
2018-03-01 21:35:15 +00:00
rev = version;
2019-12-09 13:37:52 +00:00
sha256 = "1h9h5j7pdi0afpip9ncq76h1xjhvb8bnm585q17afz2l4fydy8qj";
2017-02-11 18:10:46 +00:00
};
2018-03-01 21:46:03 +00:00
nativeBuildInputs = [ cmake ];
doCheck = true;
checkTarget = "test";
enableParallelBuilding = true;
2017-02-11 18:10:46 +00:00
meta = with stdenv.lib; {
description = "Experimental range library for C++11/14/17";
homepage = https://github.com/ericniebler/range-v3;
license = licenses.boost;
platforms = platforms.all;
maintainers = with maintainers; [ primeos xwvvvvwx ];
2017-02-11 18:10:46 +00:00
};
}