Merge pull request #214197 from candyc1oud/fplus

functionalplus: init at 0.2.18-p0
This commit is contained in:
Nick Cao 2023-02-03 09:09:53 +08:00 committed by GitHub
commit 5b84fb3002
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "functionalplus";
version = "0.2.18-p0";
src = fetchFromGitHub {
owner = "Dobiasd";
repo = "FunctionalPlus";
rev = "v${version}";
sha256 = "sha256-jypBQjFdVEktB8Q71RTg+3RJoeFwD5Wxw+fq+4QG38g=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Functional Programming Library for C++";
homepage = "https://github.com/Dobiasd/FunctionalPlus";
license = licenses.boost;
platforms = platforms.all;
maintainers = with maintainers; [ candyc1oud ];
};
}

View File

@ -19693,6 +19693,8 @@ with pkgs;
funambol = callPackage ../development/libraries/funambol { };
functionalplus = callPackage ../development/libraries/functionalplus { };
galer = callPackage ../tools/security/galer { };
gallia = callPackage ../tools/security/gallia { };