functionalplus: init at 0.2.18-p0

This commit is contained in:
Candy Cloud
2023-02-02 15:36:26 +00:00
parent 947c873c4c
commit f53eec9633
2 changed files with 25 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -19682,6 +19682,8 @@ with pkgs;
funambol = callPackage ../development/libraries/funambol { };
functionalplus = callPackage ../development/libraries/functionalplus { };
galer = callPackage ../tools/security/galer { };
gallia = callPackage ../tools/security/gallia { };