2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2018-10-03 12:40:34 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "brigand";
|
2018-10-03 12:40:34 +01:00
|
|
|
version = "1.3.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "edouarda";
|
|
|
|
repo = "brigand";
|
|
|
|
rev = "4db9f665b4ece31b51aaf35b499b2c8e5811efa3";
|
|
|
|
sha256 = "14b8r3s24zq0l3addy3irzxs5cyqn3763y5s310lmzzswgj1v7r4";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-10-03 12:40:34 +01:00
|
|
|
description = "Instant compile time C++ 11 metaprogramming library";
|
|
|
|
longDescription = ''
|
|
|
|
Brigand is a light-weight, fully functional, instant-compile time C++ 11 meta-programming library.
|
|
|
|
Everything you were doing with Boost.MPL can be done with Brigand. And if that's not the case, open an issue!'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/edouarda/brigand";
|
2018-10-03 12:40:34 +01:00
|
|
|
license = licenses.boost;
|
|
|
|
maintainers = with maintainers; [ pmiddend ];
|
2021-03-08 14:53:38 +00:00
|
|
|
platforms = platforms.all;
|
2018-10-03 12:40:34 +01:00
|
|
|
};
|
|
|
|
}
|