lol

expected-lite: init at 0.6.2

authored by

Azat Bahawi and committed by
ehmry
5ae08b2a 6e36ee59

+34
+32
pkgs/development/libraries/expected-lite/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , ninja 6 + }: 7 + 8 + stdenv.mkDerivation rec { 9 + pname = "expected-lite"; 10 + version = "0.6.2"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "martinmoene"; 14 + repo = "expected-lite"; 15 + rev = "v${version}"; 16 + hash = "sha256-d3lFpi62QPZKVt/QeBV7MoH3QltSg5dsUI3dIUArPpA="; 17 + }; 18 + 19 + nativeBuildInputs = [ cmake ninja ]; 20 + 21 + doCheck = true; 22 + 23 + meta = with lib; { 24 + description = '' 25 + Expected objects in C++11 and later in a single-file header-only library 26 + ''; 27 + homepage = "https://github.com/martinmoene/expected-lite"; 28 + changelog = "https://github.com/martinmoene/expected-lite/blob/${src.rev}/CHANGES.txt"; 29 + license = licenses.boost; 30 + maintainers = with maintainers; [ azahi ]; 31 + }; 32 + }
+2
pkgs/top-level/all-packages.nix
··· 6360 6360 6361 6361 expect = callPackage ../tools/misc/expect { }; 6362 6362 6363 + expected-lite = callPackage ../development/libraries/expected-lite { }; 6364 + 6363 6365 exportarr = callPackage ../servers/monitoring/prometheus/exportarr { }; 6364 6366 6365 6367 expliot = callPackage ../tools/security/expliot { };