mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-05 20:11:43 +03:00
expected-lite: init at 0.6.2
This commit is contained in:
parent
6e36ee59a3
commit
5ae08b2aaa
32
pkgs/development/libraries/expected-lite/default.nix
Normal file
32
pkgs/development/libraries/expected-lite/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user