mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 22:06:00 +03:00
Merge pull request #214197 from candyc1oud/fplus
functionalplus: init at 0.2.18-p0
This commit is contained in:
commit
5b84fb3002
23
pkgs/development/libraries/functionalplus/default.nix
Normal file
23
pkgs/development/libraries/functionalplus/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user