mitama-cpp-result: init at 9.3.0
This commit is contained in:
parent
067bfc6c90
commit
166ae52562
2 changed files with 38 additions and 0 deletions
36
pkgs/development/libraries/mitama-cpp-result/default.nix
Normal file
36
pkgs/development/libraries/mitama-cpp-result/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "mitama-cpp-result";
|
||||
version = "9.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "LoliGothick";
|
||||
repo = "mitama-cpp-result";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-CWYVPpmPIZZTsqXKh+Ft3SlQ4C9yjUof1mJ8Acn5kmM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/LoliGothick/mitama-cpp-result";
|
||||
description = "A Library that provides `result<T, E>` and `maybe<T>` and monadic functions for them";
|
||||
longDescription = ''
|
||||
mitama-cpp-result is the C++17 libraries for error handling without exceptions.
|
||||
|
||||
mitama-cpp-result provides `result<T, E>`, `maybe<T>`, and associated monadic functions
|
||||
(like Result and Option in Programming Language Rust).
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ken-matsui ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
})
|
||||
# TODO [ ken-matsui ]: tests
|
|
@ -14961,6 +14961,8 @@ with pkgs;
|
|||
|
||||
mint = callPackage ../development/compilers/mint { };
|
||||
|
||||
mitama-cpp-result = callPackage ../development/libraries/mitama-cpp-result { };
|
||||
|
||||
mitscheme = callPackage ../development/compilers/mit-scheme
|
||||
{ stdenv = gcc10StdenvCompat; texLive = texlive.combine { inherit (texlive) scheme-small epsf texinfo; }; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue