depot/third_party/nixpkgs/pkgs/development/libraries/functionalplus/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

23 lines
564 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "functionalplus";
version = "0.2.20-p0";
src = fetchFromGitHub {
owner = "Dobiasd";
repo = "FunctionalPlus";
rev = "v${version}";
sha256 = "sha256-PKd3gx63VTxyq1q0v7WaKXVA0oICpZQfVsKsgUml9wk=";
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Functional Programming Library for C++";
homepage = "https://github.com/Dobiasd/FunctionalPlus";
license = licenses.boost;
platforms = platforms.all;
maintainers = [];
};
}