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