Skip to content

Commit

Permalink
cpp-flux: init at 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
foolnotion committed Nov 23, 2023
1 parent b53618e commit 38e98cd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgs/cpp-flux/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib, stdenv, fetchFromGitHub, cmake }:

stdenv.mkDerivation rec {
pname = "cpp-flux";
version = "0.1.0";

src = fetchFromGitHub {
owner = "tcbrindle";
repo = "flux";
rev = "1c128b50af95fc39b6683d437f9210239e219836";
hash = "sha256-WFHju4hguuuoodCCUHnhPvF4z4YsWSkGqH0fqt+iQ+c=";
};

nativeBuildInputs = [ cmake ];

cmakeFlags = [
"-DFLUX_BUILD_EXAMPLES=OFF"
"-DFLUX_BUILD_TESTS=OFF"
];

meta = with lib; {
description = "A C++20 library for sequence-orientated programming";
homepage = "https://github.com/tcbrindle/flux";
license = licenses.boost;
platforms = platforms.all;
#maintainers = with maintainers; [ foolnotion ];
};
}

0 comments on commit 38e98cd

Please sign in to comment.