23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
23 lines
561 B
Nix
23 lines
561 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "functionalplus";
|
|
version = "0.2.22";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Dobiasd";
|
|
repo = "FunctionalPlus";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-y0IRmgG9lhWO4IR4G9/VP2a3B+ORTnF7MCf4FU5EuMk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Functional Programming Library for C++";
|
|
homepage = "https://github.com/Dobiasd/FunctionalPlus";
|
|
license = licenses.boost;
|
|
platforms = platforms.all;
|
|
maintainers = [];
|
|
};
|
|
}
|