nixpkgs/pkgs/development/libraries/mitama-cpp-result/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

37 lines
953 B
Nix

{ 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 = "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 = [ ];
platforms = platforms.unix;
};
})
# TODO [ ken-matsui ]: tests