nixpkgs/pkgs/development/libraries/tl-expected/default.nix
Michael Weiss 0cef9f1074
range-v3, tl-expected: Remove myself as maintainer
I've only maintained those libraries for Telegram-Desktop which I don't
use and maintain anymore: 42ed814325
2022-01-02 13:02:37 +01:00

25 lines
712 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "tl-expected-unstable";
version = "2019-11-11"; # 5 commits ahead of version 1.0.0
src = fetchFromGitHub {
owner = "TartanLlama";
repo = "expected";
rev = "1d9c5d8c0da84b8ddc54bd3d90d632eec95c1f13";
fetchSubmodules = true;
sha256 = "0rzfn9yyg70zwpxbmv22qy0015baymi2rdd65ixmcb31fgnap68i";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "C++11/14/17 std::expected with functional-style extensions";
homepage = "https://tl.tartanllama.xyz/en/latest/api/expected.html";
license = licenses.cc0;
platforms = platforms.all;
maintainers = with maintainers; [ ];
};
}