expected-lite: init at 0.6.2

This commit is contained in:
Azat Bahawi 2022-10-15 13:25:58 +03:00 committed by ehmry
parent 6e36ee59a3
commit 5ae08b2aaa
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
, ninja
}:
stdenv.mkDerivation rec {
pname = "expected-lite";
version = "0.6.2";
src = fetchFromGitHub {
owner = "martinmoene";
repo = "expected-lite";
rev = "v${version}";
hash = "sha256-d3lFpi62QPZKVt/QeBV7MoH3QltSg5dsUI3dIUArPpA=";
};
nativeBuildInputs = [ cmake ninja ];
doCheck = true;
meta = with lib; {
description = ''
Expected objects in C++11 and later in a single-file header-only library
'';
homepage = "https://github.com/martinmoene/expected-lite";
changelog = "https://github.com/martinmoene/expected-lite/blob/${src.rev}/CHANGES.txt";
license = licenses.boost;
maintainers = with maintainers; [ azahi ];
};
}

View file

@ -6360,6 +6360,8 @@ with pkgs;
expect = callPackage ../tools/misc/expect { };
expected-lite = callPackage ../development/libraries/expected-lite { };
exportarr = callPackage ../servers/monitoring/prometheus/exportarr { };
expliot = callPackage ../tools/security/expliot { };